```js ++[[]][0] ``` results in ```js ++[] ``` which is invalid syntax. When chained together ```js ++[++[++[[]][0]][0]][0] ``` it results in ```js ++++++[]; ``` Expected result would be `1` and `3` respectively.