using System;
public class Program
{
public static void Main(string[] args)
int[,] x = new int [4,4];
String[,] y = {{"dog", "cat", "monkey", "zebra"},
{"blue", "green","yellow","white"},
{"one", "two", "three", "four"},
{"black", "dark", "red", "Orange"}};
for(int i=0;i<4;i++){
for(int j=0;j<4;j++){
Console.Write(y[i,j]+" ");
}
Console.WriteLine();