Code:
Dim $MyArray[]

For $i = 0 to 50
	ReDim Preserve $MyArray[UBound($MyArray)+1]
	$MyArray[UBound($MyArray)] = 'this is value ' + $i
Next


You can do this, but it is slower than the first option I gave you...
_________________________
The Code is out there