1.17 - Random Guesser Program

1... Create the following form, make sure that you name the objects properly.

2... In this program the user will enter a number between 1 and 10. When the user clicks on the 'Check Your Guess' button the program will generate a random number and then will compare the random number with the user's guess.

3... The Response label will change depending on the comparison between the user's guess and the random number. The Response label will either say "Too High!", "Too Low!", or "Correct!"

4... You may need the following code to generate a random number: intRandNum = Int (10 * Rnd( ) + 1)

5... If you run the program and the random number never changes, then you will need to add the word Randomize to the top of your form.