Override Inherited Methods.help

Tell us what’s happening:

Where is my wrong?Please I need help.

Your code so far



function Bird() { }

Bird.prototype.fly = function() { return "I am flying!"; };

function Penguin() { }
Penguin.prototype = Object.create(Bird.prototype);
Penguin.prototype.constructor = Penguin;

// Add your code below this line

Penguin.prototype.fly = function(){
    return "Alas, this is a flightless bird";
};

// Add your code above this line

let penguin = new Penguin();
console.log(penguin.fly());

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/object-oriented-programming/override-inherited-methods/

penguin.fly() should return the string "Alas, this is a flightless bird."

You missed the dot at the end

Hahaha this was so simple thank you for helping.