ES6 Classes & Constructors

What happens when you call this class without the 'new' keyword?
class Person {
  constructor(name) {
    this.name = name;
  }
  
  sayHello() {
    return `Hello, my name is ${this.name}`;
  }
}
Next Question (2/28)