Wrong: ```kotlin action { nextState = state.copy() } ``` Right: ```kotlin action { nextState = nextState.copy() } ```