```js Array.prototype.myUnshift = function (...items) { this.reverse().push(...items.reverse()) this.reverse() return this.length } ```