---
title: Override Inherited Methods
---
## Override Inherited Methods

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