/** * Write a description of class Dog here. **/ public class Dog extends Pet { public Dog() { super(); } public Dog(String type, String name) { super(type, name); } public String speak() { return "woof"; } }