public static string name1;
public static string name2;
public static bool player = true;
public static int options;
public static int Score1 = 0;
public static int Score2 = 0;
public static string winner;
public static string Cplayer;
public static void Main(string[] args)
public static void info()
Console.WriteLine(" Welcome to the Trivia Extravaganza!");
Console.WriteLine("This trivia show would show you just how smart you and your opponent are in the following categories!");
Console.WriteLine("Are you ready to have some fun. Then press enter to contunue!");
static void background1()
static void background2()
static void background3()
static void background4()
public static void GetName()
Console.WriteLine("Player one please input your first name:");
Global.name1 = Console.ReadLine();
Console.WriteLine("Player two please input your first name:");
Global.name2 = Console.ReadLine();
public static void Menu()
Console.WriteLine(" Select your Quiz");
Console.WriteLine("1. Rouges Gallery");
Console.WriteLine("2. The Right 'I'");
Console.WriteLine("3. Coats of Paint");
Console.WriteLine("4. Riddle Me This");
Console.WriteLine("5. Lego Box Art");
Console.WriteLine("6. Exit");
if (Global.player == true)
Console.WriteLine(Global.name1 + ", please select a number from the menu:");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine(Global.name2 + ", please select a number from the menu:");
Global.options = int.Parse(Console.ReadLine());
if ((Global.options < 1) || (Global.options > 6))
public static void exit()
Console.WriteLine("Congratulations!");
Console.WriteLine(Global.name1 +" and " + Global.name2 + ", thank you both for playing this. ");
if (Global.Score1 > Global.Score2)
Global.winner = Global.name1;
else if (Global.Score1 < Global.Score2)
Global.winner = Global.name2;
Global.winner = "It is a Tie, Both of";
Console.WriteLine(Global.winner +" you are the winner!!!");
Console.WriteLine("Hope to see you again!");
public static void Random()
Random randoms = new Random();
Global.rand = randoms.Next(1, 15);
public static void GetPoint()
if (Global.player == true)
public static void ChangeOver()
if (Global.player == true)
public static void TopicOne()
if (Global.player == true)
Global.Cplayer = Global.name1;
Global.Cplayer = Global.name2;
Console.WriteLine(Global.name1 + " Score = " + Global.Score1);
Console.WriteLine(Global.name2 + " Score = " + Global.Score2);
Console.WriteLine(Global.Cplayer +" Your Topic is: Rouges Gallery!");
Console.WriteLine("Which of the following birth one of the first rogues gallery?");
Console.WriteLine("1. Batman");
Console.WriteLine("2. The Phantom");
Console.WriteLine("3. Dick Tracy");
Console.WriteLine("4. Shazam");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Which rogue has the most drastic and notable change?");
Console.WriteLine("1. Mr. Freeze");
Console.WriteLine("2. Man-bat");
Console.WriteLine("3. Ventriloquist");
Console.WriteLine("4. Hush");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Which of the following has no rogues Gallery?");
Console.WriteLine("1. Batman");
Console.WriteLine("2. The Phantom");
Console.WriteLine("3. Dick Tracy");
Console.WriteLine("4. Spider-Noir");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What is the first rogue that Superman fought?");
Console.WriteLine("1. Brainiac");
Console.WriteLine("2. Ultra-Humanite");
Console.WriteLine("3. General Zod");
Console.WriteLine("4. Lex Luthor");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Find the odd one out:");
Console.WriteLine("1. Shocker");
Console.WriteLine("2. Hammerhead");
Console.WriteLine("3. Kite-man");
Console.WriteLine("4. Juggernaut");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Identify the hero based on the following villains: Doctor Dome, Lady Granite, Mr. Cauldron");
Console.WriteLine("1. Shazam");
Console.WriteLine("2. Ant-man");
Console.WriteLine("3. Green Arrow");
Console.WriteLine("4. Platic Man");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Which Fantastic Four villain gets scared when a hero confronts with a wooden gun?");
Console.WriteLine("1. The impossible man");
Console.WriteLine("2. Doctor Doom");
Console.WriteLine("3. Magneto");
Console.WriteLine("4. Kang the Conqueror");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What villain appear in the new Ant-man movie?");
Console.WriteLine("1. Modok");
Console.WriteLine("2. The Rock");
Console.WriteLine("3. Galactus");
Console.WriteLine("4. Red skull");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Which villain has a coin gimmick?");
Console.WriteLine("1. Bane");
Console.WriteLine("2. Poison Ivy");
Console.WriteLine("3. Two-Face");
Console.WriteLine("4. Mad Hatter");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Find the odd one out:");
Console.WriteLine("1. Mr. Freeze");
Console.WriteLine("2. Frollo");
Console.WriteLine("3. Dr. Drakken");
Console.WriteLine("4. Megamind");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Who voices the Joker in BTAS?");
Console.WriteLine("1. Tim Curry");
Console.WriteLine("2. Toy Todd");
Console.WriteLine("3. Mark Hamell");
Console.WriteLine("4. Ron Perlman");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Which villain is the most well-known obscure character in the DCAU?");
Console.WriteLine("1. Kiteman");
Console.WriteLine("2. Crazy Quilt");
Console.WriteLine("3. The Eraser");
Console.WriteLine("4. Egghead");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Which villain teamwork is actually true?");
Console.WriteLine("1. Doctor Doom and Sub-mariner");
Console.WriteLine("2. Joker and Carnage");
Console.WriteLine("3. Lex Luthor and Ra’s al Ghul");
Console.WriteLine("4. Professor Pyg and Black Manta");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Who was the historically the very first villain Batman faced?");
Console.WriteLine("1. Joker");
Console.WriteLine("2. Man-Bat");
Console.WriteLine("3. Doctor Death");
Console.WriteLine("4. Killer Kroc");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Find the odd one out:");
Console.WriteLine("1. Dr. Mystico");
Console.WriteLine("2. Scar");
Console.WriteLine("3. Pertorious");
Console.WriteLine("4. Ravencroft");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
if (Global.player == true)
Global.Cplayer = Global.name1;
Global.Cplayer = Global.name2;
Console.WriteLine(Global.name1 + " Score = " + Global.Score1);
Console.WriteLine(Global.name2 + " Score = " + Global.Score2);
Console.WriteLine(Global.Cplayer +" Your Topic is: The right 'I'!");
Console.WriteLine("_____ am right");
Console.WriteLine("1. High");
Console.WriteLine("2. I");
Console.WriteLine("3. Pie");
Console.WriteLine("4. Aye");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("I ain't gonna ______ , this is sad. ");
Console.WriteLine("1. lie");
Console.WriteLine("2. buy");
Console.WriteLine("3. deny");
Console.WriteLine("4. dry");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("'All time ______' by Rita Collidge");
Console.WriteLine("1. Tie");
Console.WriteLine("2. by");
Console.WriteLine("3. high");
Console.WriteLine("4. ally");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("'_______ Yellow Brick Road' by Elton John");
Console.WriteLine("1. my");
Console.WriteLine("2. buy");
Console.WriteLine("3. bye");
Console.WriteLine("4. fly");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Oh I don't mean to ______, just wondering why you told everyone about your…");
Console.WriteLine("1. eye");
Console.WriteLine("2. pry");
Console.WriteLine("3. sly");
Console.WriteLine("4. deny");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("'______, me hearties!', replied the old pirate.");
Console.WriteLine("1. bye");
Console.WriteLine("2. fly");
Console.WriteLine("3. why");
Console.WriteLine("4. defy");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("I’m gonna make them potatoes _______!");
Console.WriteLine("1. dry");
Console.WriteLine("2. cry");
Console.WriteLine("3. why");
Console.WriteLine("4. fry");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("This doesn't ______ to the context!");
Console.WriteLine("1. rely");
Console.WriteLine("2. awry");
Console.WriteLine("3. apply");
Console.WriteLine("4. tie");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Can you help me out? There is an ______ amount of food.");
Console.WriteLine("1. dry");
Console.WriteLine("2. oversupply");
Console.WriteLine("3. wry");
Console.WriteLine("4. bri");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("_____ away Stanley, be free!");
Console.WriteLine("1. spy");
Console.WriteLine("2. dye");
Console.WriteLine("3. fly");
Console.WriteLine("4. cry");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("____-nominal method");
Console.WriteLine("1. tri");
Console.WriteLine("2. sty");
Console.WriteLine("3. gli");
Console.WriteLine("4. nigh");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("This ____ the laws of physics");
Console.WriteLine("1. tie");
Console.WriteLine("2. defy");
Console.WriteLine("3. apply");
Console.WriteLine("4. tae");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("A cat that hates baths but loves the rain, how ______.");
Console.WriteLine("1. pry");
Console.WriteLine("2. by");
Console.WriteLine("3. wry");
Console.WriteLine("4. try");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Tears have been wept as many _____ in fear.");
Console.WriteLine("1. lie");
Console.WriteLine("2. eye");
Console.WriteLine("3. try");
Console.WriteLine("4. cry");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Exerpt from Breaking Bad: __________ the danger!");
Console.WriteLine("1. Sly is");
Console.WriteLine("2. I am");
Console.WriteLine("3. dye in");
Console.WriteLine("4. cry from");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
if (Global.player == true)
Global.Cplayer = Global.name1;
Global.Cplayer = Global.name2;
Console.WriteLine(Global.name1 + " Score = " + Global.Score1);
Console.WriteLine(Global.name2 + " Score = " + Global.Score2);
Console.WriteLine(Global.Cplayer +" Your Topic is: Coats of Paint!");
Console.WriteLine("What are the Color inks in the printer (in order)?");
Console.WriteLine("1. blue, yellow, red, black");
Console.WriteLine("2. green, black, orange, blue");
Console.WriteLine("3. Cyan, yellow, magenta, black");
Console.WriteLine("4. all the colors of the rainbow, also black");
Console.WriteLine("");Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("The color of old paper is:");
Console.WriteLine("1. yellow");
Console.WriteLine("2. foxing");
Console.WriteLine("3. White");
Console.WriteLine("4. Brown");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("The color of copper");
Console.WriteLine("1. green");
Console.WriteLine("2. orange");
Console.WriteLine("3. gray");
Console.WriteLine("4. gold");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("The color scheme of a NYC MTA bus:");
Console.WriteLine("1. Green, white, red");
Console.WriteLine("2. Yellow, Red, Gray");
Console.WriteLine("3. Red, Orange, Dark Green");
Console.WriteLine("4. Blue, yellow, black");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Main color of a space rocket:");
Console.WriteLine("1. brown");
Console.WriteLine("2. black");
Console.WriteLine("3. gray");
Console.WriteLine("4. white");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Color Scheme of a Jupiter Locomotive:");
Console.WriteLine("1. Red, Blue, Gold, Black");
Console.WriteLine("2. Red, Green, Yellow, White");
Console.WriteLine("3. Purple, Orange, Yellow, Black");
Console.WriteLine("4. Green, Red, Pink, Blue");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Color of coffee:");
Console.WriteLine("1. White");
Console.WriteLine("2. Brown");
Console.WriteLine("3. Orange");
Console.WriteLine("4. Beige");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Color of the Sun:");
Console.WriteLine("1. Red");
Console.WriteLine("2. Orange");
Console.WriteLine("3. Yellow");
Console.WriteLine("4. White");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What eye color is considered rare?");
Console.WriteLine("1. blue");
Console.WriteLine("2. pink");
Console.WriteLine("3. green");
Console.WriteLine("4. red");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Recurring color of many Nerf or other dart blasters:");
Console.WriteLine("1. Orange");
Console.WriteLine("2. Cyan");
Console.WriteLine("3. Peach");
Console.WriteLine("4. sky");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("RGB includes the following except:");
Console.WriteLine("1. Red");
Console.WriteLine("2. Green");
Console.WriteLine("3. Blue");
Console.WriteLine("4. any other color");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("As a feeling, what does the color Purple represent?");
Console.WriteLine("1. sad");
Console.WriteLine("2. mad");
Console.WriteLine("3. Power");
Console.WriteLine("4. Money");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Color of clear");
Console.WriteLine("1. white");
Console.WriteLine("2. blue");
Console.WriteLine("3. gray");
Console.WriteLine("4. None of the above");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("The color scheme of the Mona Lisa?");
Console.WriteLine("1. Red and Orange");
Console.WriteLine("2. Brown and yellow");
Console.WriteLine("3. Black and white");
Console.WriteLine("4. Magenta and Indigo");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("BOnus point for guessing a color out of the following:");
Console.WriteLine("1. Gamboge");
Console.WriteLine("2. Vermilion");
Console.WriteLine("3. Glaucous");
Console.WriteLine("4. No");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
if (Global.player == true)
Global.Cplayer = Global.name1;
Global.Cplayer = Global.name2;
Console.WriteLine(Global.name1 + " Score = " + Global.Score1);
Console.WriteLine(Global.name2 + " Score = " + Global.Score2);
Console.WriteLine(Global.Cplayer +" Your Topic is: Riddle me this!");
Console.WriteLine("What month of the year has 28 days?");
Console.WriteLine("1. February");
Console.WriteLine("2. June");
Console.WriteLine("3. December");
Console.WriteLine("4. all from the above");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What gets wet while drying?");
Console.WriteLine("1. Water");
Console.WriteLine("2. SandSand");
Console.WriteLine("3. towel");
Console.WriteLine("4. white shirt");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("I shave every day, but my beard stays the same. What am I?");
Console.WriteLine("1.hair");
Console.WriteLine("2. shaver");
Console.WriteLine("3. barber");
Console.WriteLine("4. human");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("You walk into a room that contains a match, a kerosene lamp,");
Console.WriteLine("a candle and a fireplace. What would you light first?");
Console.WriteLine("1. match");
Console.WriteLine("2. kerosene lamp");
Console.WriteLine("3.candle");
Console.WriteLine("4. fireplace");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What is always in front of you but can’t be seen?");
Console.WriteLine("1. invisible object");
Console.WriteLine("2. wall");
Console.WriteLine("3. window");
Console.WriteLine("4. future");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("The more of this there is, the less you see. What is it?");
Console.WriteLine("1. dorm room");
Console.WriteLine("2. museum");
Console.WriteLine("3. darkness");
Console.WriteLine("4. hallway");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What has many keys but can’t open a single lock?");
Console.WriteLine("1. a broken door");
Console.WriteLine("2. piano");
Console.WriteLine("3. code");
Console.WriteLine("4. safecrackers");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What gets bigger when more is taken away?");
Console.WriteLine("1. a relationship");
Console.WriteLine("2. air");
Console.WriteLine("3. a hole");
Console.WriteLine("4. bubbles");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Where does today come before yesterday?");
Console.WriteLine("1. tomorrow");
Console.WriteLine("2. a door");
Console.WriteLine("3. dictionary");
Console.WriteLine("4. yesterday’s today");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine(" What goes up and down but doesn’t move?");
Console.WriteLine("1. elevator");
Console.WriteLine("2. stairs");
Console.WriteLine("3. planes");
Console.WriteLine("4. forklift");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What has legs, but doesn’t walk?");
Console.WriteLine("1. pole");
Console.WriteLine("2. table");
Console.WriteLine("3. plate");
Console.WriteLine("4. tape");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What has one eye, but can’t see?");
Console.WriteLine("1. Polyphemus");
Console.WriteLine("2. camera");
Console.WriteLine("3. computerc");
Console.WriteLine("4. needle");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What kind of band never plays music?");
Console.WriteLine("1. My Chemical romance");
Console.WriteLine("2. Beady eye");
Console.WriteLine("3. “rubber” band");
Console.WriteLine("4. Queen");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What runs all around a backyard, yet never moves?");
Console.WriteLine("1. fence");
Console.WriteLine("2. tree");
Console.WriteLine("3. cart");
Console.WriteLine("4. dirt");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What has a head and a tail but no body?");
Console.WriteLine("1. ghost");
Console.WriteLine("2. snake");
Console.WriteLine("3. fish");
Console.WriteLine("4. coin");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
if (Global.player == true)
Global.Cplayer = Global.name1;
Global.Cplayer = Global.name2;
Console.WriteLine(Global.name1 + " Score = " + Global.Score1);
Console.WriteLine(Global.name2 + " Score = " + Global.Score2);
Console.WriteLine(Global.Cplayer +" Your Topic is: Lego Box Art!");
Console.WriteLine("How many pieces are in the Lego City Arctic ice glider?");
Console.WriteLine("1. 60");
Console.WriteLine("2. 50");
Console.WriteLine("3. 45");
Console.WriteLine("4. 72");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What is lego set number 6483?");
Console.WriteLine("1. Color Line Container");
Console.WriteLine("2. Rain dance Ridge");
Console.WriteLine("3. Universal Building");
Console.WriteLine("4. Coastal Patrol");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("In The Batman Lego Set: Riddler’s face off,");
Console.WriteLine("who is also included in the set aside from Batman and Riddler?");
Console.WriteLine("1. Penguin");
Console.WriteLine("2. Selina Kyle");
Console.WriteLine("3. Bullock");
Console.WriteLine("4. Falcone");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What is the age range of the Lego Medium Creative?");
Console.WriteLine("1. 3+");
Console.WriteLine("2. 6-12");
Console.WriteLine("3. 4-99");
Console.WriteLine("4. 5+");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Which lego set has the largest amount of lego pieces?");
Console.WriteLine("1. Eiffel Tower");
Console.WriteLine("2. Millennium Falcon");
Console.WriteLine("3. World Map");
Console.WriteLine("4. Titanic");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Which one of these names is a Lego Duplo?");
Console.WriteLine("1. Western Train");
Console.WriteLine("2. Tote Pack");
Console.WriteLine("3. Family Vacation on Wheels");
Console.WriteLine("4. Buildable Minnie and Minnie");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What animals are in Lego set Number 60300?");
Console.WriteLine("1. Monkeys and Scorpions");
Console.WriteLine("2. wolves and spiders");
Console.WriteLine("3. Cats and Dogs");
Console.WriteLine("4. Frogs and Snakes");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("In 2007, this theme revolved around Trolls, Skeletons, Dwarves, and Knights.");
Console.WriteLine("Commonly referred to as Fantasy Era, which evergreen Lego series was this a Sub-Theme of?");
Console.WriteLine("1. Pirates");
Console.WriteLine("2. Town");
Console.WriteLine("3. Castle");
Console.WriteLine("4. Space");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("One of the first original Lego heroes, Johnny Thunder has gained a special");
Console.WriteLine("place in the hearts of many older fans. Which theme did this minifig star in?");
Console.WriteLine("1. Indiana Jones");
Console.WriteLine("2. Dino's Attack");
Console.WriteLine("3. Pharoh's quest");
Console.WriteLine("4. Adventures");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What is the age range of the Lego Colosseum?");
Console.WriteLine("1. 7+");
Console.WriteLine("2. 18+");
Console.WriteLine("3. 13-99");
Console.WriteLine("4. 4-12");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine(" How many pieces come in a standard five-hundred piece bucket?");
Console.WriteLine("1. 400");
Console.WriteLine("2. 750");
Console.WriteLine("3. 1220");
Console.WriteLine("4. 500");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("Created in 2009, what theme was a replacement for Rock Raiders?");
Console.WriteLine("1. Rock Miners");
Console.WriteLine("2. Underground Raiders");
Console.WriteLine("3. Mining Team");
Console.WriteLine("4. Power Miners");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("In 2014, a theme revolving around super powered criminals was released.");
Console.WriteLine("An in-house theme, this Lego series saw three waves. What was this theme called?");
Console.WriteLine("1. Lego City");
Console.WriteLine("2. Ultra Agents");
Console.WriteLine("3. Undercover");
Console.WriteLine("4. Cops");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("After having his own theme in 2006-08, Batman once again starred in a Lego license,");
Console.WriteLine("this time alongside the Justice League. In what year were DC Comics sets released?");
Console.WriteLine("1. 2010");
Console.WriteLine("2. 2011");
Console.WriteLine("3. 2012");
Console.WriteLine("4. 2013");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());
Console.WriteLine("What is one of the first lego sets in the shape of (1950s)?");
Console.WriteLine("1. Garage");
Console.WriteLine("2. Castle");
Console.WriteLine("3. Monorail");
Console.WriteLine("4. Tree");
Console.WriteLine("Please select the correct answer![1-4]");
Global.options = int.Parse(Console.ReadLine());