A safe call on a member function will not execute the function if the variable is null.

Can you use a question mark (?) after the variable to make a safe call to its member function?

Great job! The honk() member function doesn't get called because toyota is currently set to null.

Whoops! We'll need to add a question mark to the end of the variable name, to make a safe call.