``` js _.union(null, [1,2,3]); // => [null, 1, 2, 3] // instead of // => [1, 2, 3] ``` This can happen if you pass somthing like `_.union(someString.match(...), others);`.