public class Reptile extends Animal { public Reptile() { weight = 40; } public String toString() { return "reptile"; } // When the Snake class calls super.getName(), this is it. public String getName() { return "Sam"; } }