Another way to simplify methods is to make parameters optional. You make a parameter optional by assigning a default value inside the method parameter list. Optional parameters must always come last in the list of parameters.
You will now create a method with three optional parameters.
Inside the Person class, add the following code:
public string OptionalParameters(string command = "Run!", double ...