Prototype & Prototypal Inheritance

What will be logged by the for...in loop?
const animal = { eats: true };
const rabbit = { jumps: true };
Object.setPrototypeOf(rabbit, animal);

for (let prop in rabbit) {
  console.log(prop);
}
Next Question (11/22)