A parameter tells us what type of argument we can pass to a function and goes in the parentheses (()) of the function declaration.

Let's add a String parameter to the printMessage() function.

Spot on! The parameter we created means the printMessage() function only accepts String arguments.

Oh noes! Could it be that we need to specify the parameter as a String type?