public class Cow extends Pet { private String speak; public Cow() { this.speak = "Moo"; } @Override public String speak() { return speak; } }