Prototype & Prototypal Inheritance

What will be logged to the console?
const proto = {
  getValue() { return this.value; }
};

const obj = Object.create(proto);
obj.value = 42;

console.log(proto.isPrototypeOf(obj));
console.log(Object.prototype.isPrototypeOf(obj));
Next Question (22/22)