Parameters are only accessible inside a function's scope. The scope is the area between curly braces ({}).

Can you make sure we're only using the parameters within the function's scope?

Nice work! The name variable only exists in the scope of the printName() function and isn't accessible anywhere else.

Close! We have to declare the printName() function before using it and only access name inside the function's scope.