I am trying to read an excel file into an array. Excel sheet is 6 columns wide by about 300 rows deep. The following code seems like it should work... but I keep getting an expected']' error I know I am doing something wrong in my syntax, but not sure what.
Code:

For $Column=0 to 6
For $cell=0 to 300;ubound($a)
$b[$column,$cell]=$oXL.cells($column,$cell)
Next
Next