// Definition of the Bird class // public class Bird extends Critter { public Bird() { super("A bird is a Critter that flies and sings all day"); } public void speak() { System.out.println("I get up early to catch the worm"); } }