Multidimensional Array basics

Hey there … using AS2, I want to add some data to some array.
And then within each part of data in the array, it holds its own data.
By using MD_arys I thought this be the best approach.

var MD_ary:Array = new Array(new Array(),new Array());

effectively gives MD_ary[][] - ie an empty MD array … so I add data…

MD_ary[0][0].push("test","data");

by tracing this, only the “test” comes out …
How do I push into the ‘2nd’ array in the MD_ary ???

cooool for help
thanks:write: