Assume for this question, the following method:

public void hopInDirection(RelativeDirection direction, int distance)
{
    // code goes here
}

To call this method without a compiler error, all of the following are necessary EXCEPT:

We can omit parameters we don't need
  • We provide two parameter values
  • Our parameter values match the specified types
  • We give the parameters in the order specified in the declaration

There are no hints for this question