Nice work! The name variable only exists in the scope of the printName() function and isn't accessible anywhere else.
name
printName()
Close! We have to declare the printName() function before using it and only access name inside the function's scope.