/** An instance is a human */
public class Human extends Animal {
    private String noise;  // The noise the human makes
    
        /** Constructor: an instance is a human with name name and noise n */
    public Human(String name, String n) {
        super(name);
        noise= n;
    }
    
    /** = the noise this at makes */
    public String getNoise() {
        return noise;
    }
    
    /** =  a description of this Animal */
    public String toString() {
        return super.toString() + ", noise " + getNoise();
    }
 
    
}