Program 25
Write an application that will perform a number guessing game. Your application will allow a player to guess a number between 1 and 100. In your application, you will have a random answer, say "70". Your game should prompt the user(using a textbox) for a guess. A command button should be the event which will check the guess against the answer. Your application should produce the following answers:
If guess <1 or guess >100, then display ERROR, INVALID GUESS
If guess <answer then display TOO LOW
If guess >answer then display TOO HIGH
If guess = answer then display CORRECT
SecretNumber should be assigned a random number in the Form_Load procedure.
Turn in code, flowchart, and form image.