using System.Collections.Generic;
public static void Main()
Random rnd = new Random();
List<string> colours = new List<String>();
List<string> animals = new List<String>();
string cColour = colours[rnd.Next(colours.Count)];
string cAnimal = animals[rnd.Next(animals.Count)];
int number = rnd.Next(10,99);
Console.WriteLine(cColour+cAnimal+number);