public static void Main()
string correctWord = "lucario";
string hint = "What is a cool pokemon?";
string hint2 = "One of the Pokemon's types is Fighting";
string hint3 = "The another type of the Pokemon is Steel";
string wrongMsg = "i am afraid you are wrong, try again";
string rightMsg = "you are correct sir/madam!";
Console.WriteLine("Please enter your name");
string user = Console.ReadLine();
Console.WriteLine("Hello " + user + " Wellcome to Pokemon quiz!");
Console.WriteLine("If you guess in 3 times so you will win");
Console.WriteLine("Ready? Please press any button") ;
Console.WriteLine("score: " + score);
userGuess = Console.ReadLine();
if(userGuess == correctWord)
Console.WriteLine(rightMsg);
Console.WriteLine(wrongMsg);