You are on the right track, and almost there. The problem you have is where you are calling/invoking the function. It must be outside of the function definition itself. You are including the function call reusableFunction(); just before the closing curly brace of the function definition. If you move the call outside of the function’s code block (after the closing curly brace), you’ll have it.