If you have a class that implements the Comparable interface and defines the natural order inside of the class (with the compareTo method), how would you be able to write an additional compare method if you wanted to order your objects differently from the natural order?
a) Implement a new interface
b) Override the compareTo method
c) Overload the compareTo method
d) Implement a Comparator interface