public static void Main()
string[][] displayCard = new string[5][];
for(int x = 0; x < displayCard.Length; x++)
displayCard[x] = new string[5];
Random rnd = new Random();
for(int x = 0; x < displayCard.Length; x++)
for(int y = 0; y < displayCard[x].Length; y++)
tempHolder = rnd.Next(0, 15) + 1;
displayCard[x][y] = tempHolder + "";
for(int z = 0; z < x; z++)
if(tempHolder == int.Parse(displayCard[z][y]))
Console.WriteLine("Duplicate detected!");
displayCard[x][y] = tempHolder + "";
displayCard[2][2] = "FRE";
Console.WriteLine("-B-\t" + "-I-\t" + "-N-\t" + "-G-\t" + "-O-\t");
for(int x = 0; x < displayCard.Length; x++)
for(int y = 0; y < displayCard[x].Length; y++)
Console.Write(displayCard[x][y] + "\t");