```js var object = { 'a': 1, 'b': '2', 'c': { d : 3 }}; _.pick(object, ['a', 'c.d']); ``` I'd expect this to return: ```js { a : 1, d : 3 } ``` but it actually returns ```js { a : 1, c: { d : 3 } } ``` which is equivalent to `_.pick(object, ["a", "c"])`