string[] Words = {"BMW", "rusi", "toyota", "suzuki", "yamaha", "honda"};
Random RandomNumber = new Random();
Target = RandomNumber.Next(Words.Length);
Console.Write(" guess the motorcycle that i have? ..it can be ");
for (int i = 0; i < Words.Length; i++)
if (i == (Words.Length - 1))
Console.Write("or " + Words[i] + "? ");
Console.Write(Words[i] + ", ");
Input = Console.ReadLine();
if (Input == Words[Target])
Console.WriteLine("you get it right, ride safe!");
Console.WriteLine("think more, try again!");
Console.WriteLine("click enter to continue");
public static void Main()
Game theGame = new Game();