Add items to ksh array

Hi

I need a code help put below items in to array and display in order like this

Thanks,
Ashan

0AD4  R2 03A1 000198701333 0AD4 R1 270B 000198701616

------

0AD4
R2
03A1
000198701333
0AD4
R1
270B
000198701616

Why do you need an array? Try:

printf "%s\n" $(cat file)
xargs -n1 < file

To put it into an array, using ksh93, try

read -A Fields < file
$ echo "${Fields[1]}"
R2
$ echo "${Fields[0]}"
0AD4