This Array Has More Dimensions than You Have Provided

From Xojo Documentation

Error message

In referring to an element of a multidimensional array, you didn't provide subscripts for all the dimensions.

Sample Code

Var a(5, 4) As String
a(1) = "Bob"

See Also

Var statement.