Factory & Constructor Functions

What potential issue does this constructor function have?
function User(name) {
  this.name = name;
  this.sayHi = function() {
    console.log('Hi, ' + this.name);
  };
}
Next Question (2/20)