<script type="text/javascript">
Car.prototype.color = "blue";
Car.prototype.drivers = new Array("Mike","John");
Car.prototype.showColor = function() {
document.write(this.color);
oCar1.drivers.push("Bill");
document.write(oCar1.drivers);
document.write(oCar2.drivers);