Prototype & Prototypal Inheritance

What code would correctly set up inheritance between Machine and Car?
function Machine() {}
Machine.prototype.start = function() { return 'Starting...'; };

function Car() {}

// Missing inheritance setup

Car.prototype.drive = function() { return 'Driving...'; };
Next Question (21/22)