Your goal is to write a Python function to play a pulse pounding game of patience.
When the player starts the program, it should print a message to wait a random amount of time, somewhere between 5 to 10 seconds. The player's goal is to wait the specified number of seconds and then press Enter again.
waitingTime = random.randint(10,60)
When the player presses Enter, that starts a timer.
That displays the elapsed time, along with a message about whether the player was too fast, too slow, or right on target.