``` javascript var foo = [1]; expect(foo).toEqual([1, 2]); foo.length = 0; ``` `expect` should print the expected value as `[1]` but prints as `[]`.