This should work: ``` var a = {} list.push a, 1, 2, 3 list.unshift a, 4, 5, 6 say a # {4, 5, 6, 1, 2, 3} ```
This should work: