all right hi folks.. all my comments are below
Code:

;so there's these two arrays
$num = "1","2","3"
$alph = "a","b","c"
;
;
;and i wanna write them to a file
for $i = 0 to ubound($num)
shell "%comspec% /cecho $num($i),$alph($i) >> someFile.txt"
next


but my file will say:
Quote:


$num(1),$alph(1)
$num(2),$alph(2)
$num(3),$alph(3)





What I want is:
Quote:


1,a
2,b
3,c





What's annoying is that I just can't find any documentation of accessing elements that actually works. This should be easy as pie.
Thanks for any help!
_________________________
kickin it solo