Try defining your array and filling its content this way, I know this works.
Code:
var arr[2][2];   //Define multidimesnional array, with 2 columns and 2 row..

var init_array_startup()   //Giving values to addresses
{
   arr[0][0] = 5; 
   arr[0][1] = 30; 
   arr[1][0] = 10;
   arr[1][1] = 50;
}




"There is no fate but what WE make." - CEO Cyberdyne Systems Corp.
A8.30.5 Commercial