public string playerName;
public Random randomNumber = new Random();
public string [] choices = new string [3] {"Rock", "Paper", "Scissors"};
public string[,] Outcomes = new string [3,3] {{"Draw", "Lose", "Win"}, {"Win", "Draw", "Lose"}, {"Lose", "Win", "Draw"}};
Console.WriteLine("What is your name?");
playerName = Console.ReadLine();
Console.WriteLine("Hello " + playerName);
Console.WriteLine(playerName + " Can you give us your age?");
playerAge = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("You are " + playerAge);
Console.WriteLine("I doubt you are actually " + playerAge + ".");
Console.WriteLine("Unc,");
Console.WriteLine("You are too young for this program.");
Console.WriteLine("You are old enough to use this program.");
Console.WriteLine("Starting [1] Rock, [2] Paper or [3] Scissors, Select Rock, Paper or Scissors.");
RPSNum1 = Convert.ToInt16(Console.ReadLine());
RNGNum = randomNumber.Next(3);
Console.WriteLine("You have chosen " + choices[RPSNum1] + " and the opponent chose " + choices[RNGNum]);
Console.WriteLine("You " + Outcomes[RPSNum1, RNGNum] );