When storing an array within an array, is it possible to directly access the "internal" array's contents? For example: dim $a[5] for $i = 0 to 4 $a[$i] = _usefullfunc($i) next msgbox(0,"test", $a[2][1][1]) ;; reading the value this way "sometimes" works $a[2][1][1] += 1 ;; writing the value this way does not seem to work at all func _usefullfunc($param) local $b[2][2] ;; do some things to populate a two dimensional array with useful data return $b endfunc At presen