Code QuizIntermediate

Extending an Interface

Find the wrong keyword used to build one interface on another.

Codetypescript
interface Animal {
  name: string;
}

interface Dog implements Animal {
  breed: string;
}

const d: Dog = { name: "Rex", breed: "Lab" };

What is the bug in this code?