To run a function, you call it by name with parentheses: python def say_hello(): print("Hello!") say_hello() Now Hello! prints. The parentheses are required.
Without them, you're referring to the function itself, not running it. You can call the same function multiple times. Each call runs the code inside from the beginning.