Introduction
Method parameters let you send information into a method so it can use that information to do its job.
When you want a method to work with different values each time it runs.
When you want to reuse a method but with different inputs.
When you want to organize your code by breaking tasks into smaller parts that need information.
When you want to calculate something based on values given when calling the method.
When you want to pass data like numbers, text, or objects into a method.
