Passing named arguments into input parameters allow us to send in parameter arguments OUT OF ORDER!
We just prefix the input parameter argument with the name of the parameter we are passing in a colon then the value;
myMethod(myOtherOptionalParam:50, myRequiredParam: "Hello Required Param", myOptionalParam: 100)