function Person(firstName = "John", lastName = 'Doe', age = 0, gender = 'Male') {
    this.firstName = firstName;
    this.lastName = lastName;
    this.age = age;
    this.gender = gender;
    this.sayFullName = function() {
        return this.firstName + " " + this.lastName
    };
}
Person.prototype.greetExtraTerrestrials = function(raceName) {
    return `Welcome to Planet Earth ${raceName}`;
};
What is wrong with this code? Doesn't it create a class method called greetExtraTerrestrials?
 
     
     
    