its a multidimensional array
i can't seem to get the data out of the array correctly it displays undefinedon trace ....below is my code
Code:
small = new Array(2);
small[0] = new Array(3);
small[0][0] = new Array(3);
small[0][0][0] = ["test"]
trace(small[0][0][0]);
