export class Vehicle { constructor(made, color){ this.made = made; this._color = color; } set color(value){ this._color = value; } get color() { return this._color } }