I know there is a syntax error here, but why?
public class Practice_1 {
public static void main(String[] args) {
int[3][3] Array={{11,22,33},{44,55,66},{77,88,99}};
for (int i=0 ; i<3 ; i++)
{
for (int j=0 ; j<3 ; j++)
{
System.out.println("Array["+i+"]["+j+"] store value is"+Array[i][j]);
}
}
}
}