function array(){ c = new Array(3); for (var i = 0; i < 3; i++) { c[i] = new Array(2); } }
With RegardsGirish