```js class TryResult extends Array { constructor(ok, val){ super(3); if(!ok) { this.ok = false; this.error = val; } else { this.ok = true; this.value = val; } this[0] = this.ok this[1] = this.error; this[2] = this.value; } } ```