Question: Which of the following code examples will cause a runtime error when executed?
phrase = "Hello, world" print(phrase)
Phrase = "Hello, world" print(phrase)
text = "Hello, world" print(text)