ES6 Classes & Constructors

Why will this code throw an error?
class Animal {
  constructor(name) {
    this.name = name;
  }
}

class Dog extends Animal {
  constructor(name, breed) {
    this.breed = breed; // Error line
    super(name);
  }
}
Next Question (17/28)