What does the following method do?

It displays the result of number * 3 in the console without returning anythingIt returns the result of number * 3 without displaying anything

Great! If a method uses return, the code below the keyword won't be executed.

Whoops! If a method uses return, the code below the keyword won't be executed.