public static void Main()
Console.WriteLine("enter a word, then i'll clear the console");
string userInput = Console.ReadLine();
char[] ConvertedLetters = userInput.ToCharArray();
foreach(char letters in ConvertedLetters) {
Console.WriteLine("Guess a letter from the word");
char UserGuess = Convert.ToChar(Console.ReadLine());
if (UserGuess == letters) {
Console.WriteLine("Correct there is one " + UserGuess);
hello.lives = hello.lives - 1;
Console.WriteLine("Nope, try again, you have " + hello.lives + "lives");