What is the difference between value type parameters and reference type parameters?
When a variable is passed by value, the function receives a copy
of the variable. When a variable is passed by reference, the
function receives a reference, or pointer, to the original
data.