It is important to declare what type of value a function will return.

If a function doesn't return any type of value, it will have a return type of void.

Sweet! The function writeName() has no return value. So we give it a voidreturn type.

Nope, try again!