At times we might want to set default parameters for methods. That way, they'll have a default value when we call the method.

See that? We have to specify a value for i but we can skip x when we call Multiply () because it has a default value.

Almost! We want to set a default parameter, meaning that we want to initialise it with a value.