First, look at the original code (reset the step to get back to this):
text = 'Hello World'
print(text)
This is the correct way to use print(), put the variable you want to change in the parentheses. The only part you want to change is the text variable in the parentheses.
Next, look at your indentation. You cannot have random indentation like this in Python. Indentation has meaning in Python so its very important that everything is lined up correctly.