public static void Main()
Random _random = new Random();
String[] nouns = new String[]{"cat", "dog", "horse", "goat", "eagle", "lion", "giraffe"};
String[] verbs = new String[]{"ate", "slept", "jumped", "raced", "ran", "tripped", "guessed", "ate", "tapped"};
String[] rhymingNouns = new String[]{"mouse", "blouse", "grouse", "house", "spouse", "doghouse", "beachhouse", "treehouse"};
String rhymingNoun1, rhymingNoun2;
randomNum = _random.Next(0, 7);
Console.WriteLine(nouns[randomNum]);