Create a web page that allows the user to play "Guess My Number". The game should generate a random integer between 0 and 999. It should also allow the user to enter an integer between 0 and 999. The entered value should be compared with the randomly generated integer and the display should provide the user one of the following three messages:

Too high, try again please

Too low, try again please

You guessed the number!


Special Note: You may use the INPUT attribute hidden as shown below in order to store your random number in an INPUT object without the user being able to view the value. <INPUT TYPE='hidden' NAME='invisible' VALUE='5'> Save the page as guess.html.

A sample screen shot is provided below.