using System.Collections.Generic;
public static void Main()
string[,] animals = new string[8,4]
{"terry","dog", "12", "omnivore"},
{"wendy","cat", "3", "omnivore"},
{"gary","fish", "1", "omnivore"},
{"bill","dog", "4", "omnivore"},
{"britney","snake", "2", "carnivore"},
{"fluff","dog", "4", "omnivore"},
{"tess","dog", "5", "omnivore"},
{"shirley","reptileman", "7", "omnivore"},
int x = Convert.ToInt32(animals[0,2]);
for(int i = 0; i <=7; i++)
tot += Convert.ToInt32(animals[0,2]);
Console.WriteLine("What is the name of the animal you are looking for? - ");
string nam = Console.ReadLine();