export default class Human{ constructor(pet){ this.pet = pet } doCry(){ return this.pet } }