```js var foo; foo = [42]; console.log(foo[0]); ``` should be handled identically with ```js var foo = [42]; console.log(foo[0]); ``` and be deobfuscated to ```js console.log(42); ```