What the wrong in the code, it is just show Array memory address instead of value in first index info[0][0].
car camry = new car();
car[][]info;
info = new car[2][3];
info[0][0] = camry;
int i = 0;
while( i < info.length)
{
int j = 0;
do
{
System.out.println( info[i][j]);
j++;
}
while(j < info[0].length);
i++;
}