public static void Main()
string name, lastn, color, artist;
Console.WriteLine("Hi! I'll ask you some questions, please write the letter of the correct answer!");
Console.WriteLine("What's my first name?");
Console.WriteLine("a. Frida");
Console.WriteLine("b. Daniela");
Console.WriteLine("c. Sofía");
Console.WriteLine("d. Mirabel");
name = (Console.ReadLine());
Console.WriteLine("Correct!");
Console.WriteLine("Wrong, the right answer was a");
Console.WriteLine("What's my last name?");
Console.WriteLine("a. Álvarez");
Console.WriteLine("b. Madrigal");
Console.WriteLine("c. Delgadillo");
Console.WriteLine("d. López");
lastn = (Console.ReadLine());
Console.WriteLine("Correct!");
Console.WriteLine("Sadly, I'm not part of the madrigal family");
Console.WriteLine("Wrong, the right answer was c");
Console.WriteLine("What's my favorite color?");
Console.WriteLine("a. Pink");
Console.WriteLine("b. Yellow");
Console.WriteLine("c. Green");
Console.WriteLine("d. Blue");
color = (Console.ReadLine());
Console.WriteLine("Correct!");
Console.WriteLine("Wrong, the right answer was d");
Console.WriteLine("Who is my favorite artist?");
Console.WriteLine("a. Olivia Rodrigo");
Console.WriteLine("b. BTS");
Console.WriteLine("c. Ariana Grande");
Console.WriteLine("d. Melanie Martinez");
artist = (Console.ReadLine());
Console.WriteLine("Correct! :D");
Console.WriteLine("Wrong! The right answer was b, you really got that one wrong? :0");
Console.WriteLine("You had " +number+ " right answers");