Is there any chance we'll see 2D arrays?

maybe:

DIM $array[5,5]

and references are:

$array[1, 1]="first"
$array[1, 2]="second"

and FOR EACH...

FOR EACH $thing in $array

returns

1,1
1,2
1,3
1,4
1,5
2,1
2,2
.
.
.
etc

cj