``` js _.merge({ x:1, a:[1,2,3]}, {y:0,a:[]}) ``` yields: ``` js { x: 1, a: [ 1, 2, 3 ], y: 0 } ``` but it should be: ``` js { x: 1, a: [ ], y: 0 } ```