Even with a global scope, it's important that we can only access variables after we create them, like here with character.
character
Make sure to pick character = "Mario", followed by print(character).
character = "Mario"
print(character)