What will be the output of the following program?
class ArrayOutput
{
public static void main(String s[])
{
int list[] = new int[] {1, 8, 7, 4, 5, 6, 3};
int count = 1;
int copy[][] = new int[list.length][list.length];
for(int i = 0; i < list.length; i++)
{
for(int j = 0; j < list.length; j++)
{
copy[i][j] = list[i];
System.out.print(copy[i][j] + " ");
}
System.out.println();
}
}
}