public static void Main()
string [] deckArray = new string[] {
Random rand = new Random();
Console.WriteLine("Welcome to Guess a Card!");
Console.WriteLine("Just type in a card value and suit and see if you are correct!");
Console.WriteLine("Give your guess as value of suit. Example: ace of clubs, five of hearts etc.");
randomNumb = rand.Next(0, 53);
card = deckArray[randomNumb];
usersGuess = Console.ReadLine();
usersGuess1 = usersGuess.ToLower();
while(usersGuess1 != card){
Console.WriteLine("Try again!");
usersGuess = Console.ReadLine();
usersGuess1 = usersGuess.ToLower();
if (counter == 0) { counter++; };
Console.WriteLine("Congrats! You win!");
Console.WriteLine("It took you " + counter + "tries!");