CumQuat: Yes.
Markus: I do not access out of bounds, I just forget a dimension or have one too many.
Damothegreat: I have not run into a limitation for dimensions in an array. I have forget a dimension or added one too many when trying to access the array.
Here is a small example, un-rem the two last lines individually to see each error.
dim test_array_1[10,10,10]
dim test_array_2[10,2]
//print(test_array_1[1,test_array_2[1,1],1,1]
//print(test_array_1[1,test_array_2[1],1,1]
EDIT: The problem is that I access several arrays in the same line sometimes, and I have to check each array individually to find where I forgot a dimension or added one too many. It would be nice if it gave me the name of the array.
13/0