Call super in the Constructor

The class Dog extends Animal. Add a constructor that accepts name and breed, calls super(name) to set the name on the parent, then assigns the breed to this.breed.
JavaScript
Console