Prototype & Prototypal Inheritance

What does the second parameter of Object.create() define?
const animal = { eats: true };
const rabbit = Object.create(animal, {
  jumps: {
    value: true,
    enumerable: true,
    writable: true,
    configurable: true
  }
});
Next Question (17/22)