Why ``` js store.subscribe(() => console.log(store.getState())); ``` and not ``` js store.subscribe(state => console.log(state)); ``` ?
Why
and not
?