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