public Random RandomNumber = new Random();
public string[,] Board = new string[3,3]{{"0","1","2"},{"3","4","5"},{"6","7","8"}};
public string[] question = new string[3] {"hornet", "false knight","big balder"};
Console.WriteLine("What is the first boss you fight in Hollow Knight? Is it hornet, false knight or big balder");
answer = Console.ReadLine();
if (answer.ToLower() == question[1])
Console.WriteLine("Correct, the first boss you fight is false knight");
Console.WriteLine("The answer you inputted was either incorrect or spelt wrong");
AiShip1 = RandomNumber.Next(0,9).ToString();
AiShip2 = RandomNumber.Next(0,9).ToString();
AiShip3 = RandomNumber.Next(0,9).ToString();
Console.WriteLine("We are going to play a game of battleships, the AI has picked 2 spaces on my 2d grid of 0 to 9. Your goal is to get rid of their 3 ships bny guessing the number tiles they're on. Goodluck you only have 6 attempts at this or you lose");