Concept Flow - Params keyword for variable arguments
Call method with params
Params array created
Method receives array
Loop through array elements
Process each argument
Method ends
The params keyword lets a method accept any number of arguments as an array, which the method then processes one by one.