this Keyword in Different Contexts

What problem exists in this code?
function Person(name) {
  this.name = name;
}

const john = Person('John');
Next Question (7/20)