When you define a function like:
MyFunction(param1,param2) {
print parameter1, parameter
}
You set the parameters when you define the function.
When you call the function like this:
MyFunction('argument1', 'argument2');
You set the values of the parameters to the arguments you passed. The arguments are what you put in the question when you call it. Hope that helped.