Assume for this question, the following method:
public void turnAndDisable(RelativeDirection direction)
{
    this.turn(direction);
    this.toss();
}
          What would happen if we called turnAndDisable(4);?
There are no hints for this question