I'm trying to create a very simple 2d array in ActionScript 3.0
var arr:Array = new Array();
arr[0][0] = "Hello";
arr[0][1] = "Ali";
trace(arr[0][0]);
trace(arr[0][1]);
But below error has comes up :
A term is undefined and has no properties.
Please tell me what am i doing wrong.