Take a look at...

http://www.picbasic.co.uk/forum/showthread.php?t=544

Then for simplicity (based on a 12 element word array) try...

Code:
	For CounterA=0 to 23
		Serout porte.0,t9600,MyWordArray.Lowbyte(CounterA)
		Next CounterA
Personally I wouldn't ever do that... preferring always to send my Serial Data as ASCII alphanumerics preceeded with a Lead-in and Qualifier and similarly properly Terminated... but good Serial Comms practice is an endless story...