Use all the skills you have already used in this task
Can I use Date Diff?
You could add a Timer to your quiz. Try to:-
Either give the user a certain amount of seconds to complete the quiz or question
Give them a certain amount of time to complete the question and then output how long it took them
Also you could use the RANDOMIZE code to shuffle the questions i.e. so each time the questions could be in different order within a category
Player One enters their name which is stored in a variable.
Player Two enters their name which is stored in a variable.
Player One enters a number which is stored in a variable called NumberToGuess.
Player Two enters a number which is a guess and is stored in a variable called Guess.
The numbers are compared and player two is told whether the Guess was higher or lower than NumberToGuess.
Player Two enters another guess and is told whether Guess is higher or lower than NumberToGuess.
This continues until Player Two correctly guesses the number. The players name and the number of guesses taken should be output
Extension
After the basic game is working add the following features one at a time. Test each feature works correctly before adding the next feature.
Limit the number of guesses to 10.
Add a time limit to the game. You will need to know how to use a Timer Control for this.
Generate a random number to guess so that one player can play against the computer.