What will happen when the following code is executed?
const object = {}; console.log(object.property);
An error will occur because the property is not defined.
null will be logged to the console.
null
undefined will be logged to the console.
undefined