public Random randomNumber = new Random();
Console.WriteLine(@" _ .-') .-. .-') _ (`-. ('-. _ (`-. ('-. _ .-') .-') .-') .-') _ .-') .-') ");
Console.WriteLine(@"( \( -O ) \ ( OO ) ( (OO ) ( OO ).-. ( (OO ) _( OO)( \( -O ) ( OO ). ( OO ). ( OO ). ( \( -O ) ( OO ). ");
Console.WriteLine(@",------. .-'),-----. .-----. ,--. ,--. _.` \ / . --. /_.` \(,------.,------. (_)---\_) .-----. ,-.-') (_)---\_)(_)---\_) .-'),-----. ,------. (_)---\_) ");
Console.WriteLine(@"| /`. '( OO' .-. ' ' .--./ | .' / (__...--'' | \-. \(__...--'' | .---'| /`. ' / _ | ' .--./ | |OO)/ _ | / _ | ( OO' .-. '| /`. '/ _ | ");
Console.WriteLine(@"| / | |/ | | | | | |('-. | /, | / | |.-'-' | || / | | | | | / | | \ :` `. | |('-. | | \\ :` `. \ :` `. / | | | || / | |\ :` `. ");
Console.WriteLine(@"| |_.' |\_) | |\| | /_) |OO )| ' _) | |_.' | \| |_.' || |_.' |(| '--. | |_.' | '..`''.) /_) |OO ) | |(_/ '..`''.) '..`''.)\_) | |\| || |_.' | '..`''.) ");
Console.WriteLine(@"| . '.' \ | | | | || |`-'| | . \ | .___.' | .-. || .___.' | .--' | . '.' .-._) \ || |`-'| ,| |_.'.-._) \.-._) \ \ | | | || . '.'.-._) \ ");
Console.WriteLine(@"| |\ \ `' '-' '(_' '--'\ | |\ \.-. | | | | | || | | `---.| |\ \ .-. \ /(_' '--'\(_| | \ /\ / `' '-' '| |\ \ \ / ");
Console.WriteLine(@"`--' '--' `-----' `-----' `--' '--'',/ `--' `--' `--'`--' `------'`--' '--'',/ `-----' `-----' `--' `-----' `-----' `-----' `--' '--' `-----' ");
Console.WriteLine("Please enter your age");
playerAge = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("You are old enough to play this game, let's continue");
Console.WriteLine("Go away child");
Console.WriteLine("For the following game you must take your pick using numbers. Rock=1, Paper= 2 or Scissors= 3");
playerChoice = Convert.ToInt32(Console.ReadLine());
playerChoice = playerChoice -1;
myNumber = randomNumber.Next(3);
Console.WriteLine(myNumber);
public string[,] myArray = new string[3,3] {{"draw","win","lose"},{"lose","draw","win"},{"win","lose","draw"}};