Do you remember when we passed values to methods like console.log()? As it turns out, we can do the same with functions if we include parameters.

See that? Parameters are temporary variables that we define in the parentheses after the function name and use to access values that we pass to the function.

Psst: these values are also known as arguments.

Would passing string really work here?