Seeing some strangeness with arrow function arguments: ``` javascript let filter = (state, action) => { // ... }; ``` becomes: ``` javascript let filter = (state, action) => { // ... }; ``` I would imagine the arguments should remain on the same line no?