public static void Main(string[] args)
Console.WriteLine("What do you want to do? joke or quiz");
answer = Console.ReadLine();
Console.WriteLine("Welcome to the joke game. Do you want to hear joke 1 or 2?");
answer = Console.ReadLine();
Console.WriteLine("Who ate Josie's ice cream?");
answer = Console.ReadLine();
Console.WriteLine("Correct!");
Console.WriteLine("Wrong, it was Josie of course!");
Console.WriteLine("If 100 bricks are on a plane, and 1 falls out, how many bricks are there?");
answer=Console.ReadLine();
Console.WriteLine("Correct!");
Console.WriteLine("Wrong, there are still 100 bricks");
Console.WriteLine("How do you put an elephant in a fridge?");
answer = Console.ReadLine();
Console.WriteLine("Open the door, put the elephant in, close the door");
else if (answer == "quiz")
Console.WriteLine("What is my Favorite color?");
answer = Console.ReadLine();
Console.WriteLine("What is my Favorite animal?");
answer = Console.ReadLine();
Console.WriteLine("You Score is " + score + " out of 2");
else if (answer != "game2" && answer != "game1")
Console.WriteLine("Try choice again.");
Console.WriteLine("The End");