Just trying to extract a counter in a loop to assign as a variable in a script, for example-

count=0

Do Until Count > 1
count=count+1

Line(count) = "blah,blah, blah" <- I need this line to be translated as follows
Line1 = "blah,blah, blah"

Loop

How do I insert the counter # (number1) in the variable name?