constructorsJavaScriptConstructorsMediumWhat does `const p = Person()` do if Person is meant to be a constructor?1Calls it as a regular function, likely returning undefined and creating no instance2Creates a new instance correctly3Throws a SyntaxError4Returns the Person prototypeBack to list