Mentions https://github.com/pupilfirst/wd301-scripts/issues/222 Changes required in this line https://github.com/pupilfirst/wd301-scripts/blob/d5fa214bddf68d1e529758b131b0f0a9c214f937/class-components/rules-of-state/README.md?plain=1#L61 To be changed to this ``` return ( <> {this.state.tasks.map((task, idx) => ( <Task key={idx} title={task.title} /> ))} </> ); ```