Here's an important thing to notice: methods don't change the variables that they receive as arguments.

When we pass myNumber to addFive(), number takes on the value of myNumber. However, number only exists within addFive() and doesn't change the value of myNumber.