public static void Main()
string[] Words = {"Dog", "Cat", "Man", "Goat"};
Random NumGen = new Random();
int num01 = NumGen.Next(1, 4);
string question01 = Words[0];
Console.WriteLine("What word am I think of?");
string anw01 = Console.ReadLine();
Console.WriteLine("You got it right!");
Console.WriteLine("Incorrect");
string question02 = Words[1];
Console.WriteLine("What word am I think of?");
string anw02 = Console.ReadLine();
Console.WriteLine("You got it right!");
Console.WriteLine("Incorrect");
string question03 = Words[2];
Console.WriteLine("What word am I think of?");
string anw03 = Console.ReadLine();
Console.WriteLine("You got it right!");
Console.WriteLine("Incorrect");
string question04 = Words[3];
Console.WriteLine("What word am I think of?");
string anw04 = Console.ReadLine();
Console.WriteLine("You got it right!");
Console.WriteLine("Incorrect");