You need to declare a variable to be an array. To declare a multidimensional array of 32 bit intergers enter this:
int32 VarName[x][y];
Where x=1st dimension size (rows) and y=2nd dimension size (columns). You can then operate on this like you would an array in a text based language. Try the entering the example below in a formula node.
int32 i;
int32 y[5][2];
for (i=0;i<5;i++)
y[i][1] = x[i]+1;
Where y is an output and x is an 1D array input.
Hope this helps...
Brian