Create a constructor function Person(name, age) that sets both properties on the instance and adds a sayHello method on the prototype (shared across all instances, not per-instance).
Person(name, age)
sayHello
Click Run to test your code