Use example 1 as example 2 will only display array[4] or you could do something like this
adc_runtime:
Lcdout $fe, 1 ' Clear LCD
for counter = Start_array to Stop_array
ADCIN 0, array[counter] ' Read channel 0 to array[counter]
Lcdout DEC array[counter]," "
next counter
Pause 100 ' Wait .1 second
Try it a see what happens
Bookmarks