Handling Errors with try-catch-finally

What will be logged as the error name in this code?
try {
  const obj = null;
  obj.property;
} catch (error) {
  console.log(error.name);
}
Next Question (1/20)