So can I do this...
Code:

Dim $Array[6]
For $Count = 0 to 5
$array[$count] = $SomeVar
Next
Redim Preserve $Array[6][6]
For $Count = 0 to 5
For $Count2 = 0 to 5
$array[$count][$count2] = $AnotherVar
Next
Next

_________________________
Today is the tomorrow you worried about yesterday.