Consider the following class: public class Player implements…

Consider the following class: public class Player implements Comparable { private String name; private int goalsScored; // other methods go here public int compareTo(Object otherObject) { __________________________________ return (goalsScored – otherPlayer.goalsScored); } } What statement can be used to complete the compareTo() method?

Consider the following class: public class Player implements…

Consider the following class: public class Player implements Comparable { private String name; private int goalsScored; // other methods go here public int compareTo(Object otherObject) { __________________________________ return (goalsScored – otherPlayer.goalsScored); } } What statement can be used to complete the compareTo() method?