Scratch Guessing Game

Your mission is to create a number guessing game that:
-asks the person for their name
-randomly selects a number
-gives the user a limited number of guesses to win
-subtracts a guess for each wrong answer
-tells the player if their guess is too high or too low
-if they guess correctly then they WIN.
-use their name and tell them that they won
-if they run out of guesses the game ends, tells the human the correct number
-use their name and tell that they ran out of guesses like “Rod, you are out of guesses. The correct number is 5.

Skills:
1. generating a random number
2. comparing a guess to the selected number
3. use the repeat until block to check remaining guesses
4. using if/else blocks inside of a repeat block

Variables needed:
-number
-name
-guess

Starter code: