Hi Vasanth, do mean you want to pass a single, multi-dimensional Array into the axis() method?
If so, in JScript, which doesn't support multi-dimensional Arrays, you can use an Array of Arrays as shown:
var a = new Array( [ "a", "b", "c" ],
[ 0, 10, 13 ],
[ 0, 123, 154 ] );
Log.Message( a[1][2] ); // Logs 13
An alternative syntax to acheive that same result is:
var a = [ [ "a", "b", "c" ],
[ 0, 10, 13 ],
[ 0, 123, 154 ] ];
You could then refactor the axis() method to be called as such: axis( a );
Hope this is of some assistance
Regards,
Phil