Output of Python program

Question:
What’s the output of the following Python program?

# text = "Hi there!"
print(text)
  1. Hi there!
  2. NameError: name 'text' is not defined
  3. There's no output
Answer:
B - is the correct answer