What have I done wrong with the following code?

<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>

<In what way does your code behave incorrectly? Include ALL error messages.>
I just wanted to mess around a bit in the labs to take a break and then this happened.
Here is the exact error text
Internal error: ReferenceError: _select is not defined’

It will print out ‘hi’ as the first line tells it to and then when it reaches the time.sleep(5) on the next line, the error message shows.
<What do you expect to happen instead?>
It’s just supposed to print ‘hi’, wait 5 seconds and then print ‘sup’.

```python

import time

print (“Hi”)
time.sleep(5)
print (“Sup”)

<do not remove the three backticks above>

Try this

import time
while True:
print “Hello”
time.sleep(5)
print “Sup”

This does not work for me. I am in 2.7.2