What's true about parameters and arguments?

Parameters are temporary variables that we can use within a functionArguments are actual values that we pass to a function when we invoke itParameters have a nameArguments are part of the function definition

Fantastic! Parameters are temporary variables with a name that we can use within a function whereas arguments are actual values that we pass to a function.

Whoops! Parameters are temporary variables with a name that we can use within a function whereas arguments are actual values that we pass to a function.