A probable simple question?!
How can I print an array to a txt file ??

Code:
Dim str(5) as string

for i=1 to 5
   str(i) = i
next


open filename for output as #1
   print #1, str( :confused: ) 
close #1