```js var = SArray([]); console.log(arr.length); // 1 arr.push("abc"); console.log(arr.length); // 1 ``` Solution would be probably to fix the returned number or remove the .length accessor.