The hook must be one of the options passed to the factory functions. The following should work: ``` js import mixer from 'supermixer'; const mix = mixer({ onOverwrite: console.log }); mix({prop: 1}, {prop: 2}); ``` Should print: `2 1 "props"`