public static void Main()
string[] ansers = {"It is certain", "Without a doubt", "You may rely on it", " Ask again later", "Cannot predict now", "Better not tell you now", "My reply is no", "Outlook not so good", "My sources say no", "Don’t count on it"};
Console.Write("Hello ask your question: ");
var question = Console.ReadLine();
Console.WriteLine("The anser to your question is: " + ansers[rand.Next(0, ansers.Length)]);
Console.Write("Would you like to try again Y for yes N for no");
var playagain = Console.ReadLine().ToLower();
System.Environment.Exit(1);
else if(playagain == "y")
Console.Write("wrong letters program will now exit ");
System.Environment.Exit(1);