Which statement sets the Person constructor as the parent of the Student constructor in the prototype chain?
Student.prototype = Person;
Student.prototype = Person();
Student.parent = Person;
Student.prototype = new Person();