diff --git a/curriculum/challenges/english/03-front-end-libraries/react/pass-an-array-as-props.english.md b/curriculum/challenges/english/03-front-end-libraries/react/pass-an-array-as-props.english.md
index fe826684fe..a3fce5a1bd 100644
--- a/curriculum/challenges/english/03-front-end-libraries/react/pass-an-array-as-props.english.md
+++ b/curriculum/challenges/english/03-front-end-libraries/react/pass-an-array-as-props.english.md
@@ -38,8 +38,8 @@ tests:
testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.find("List").get(0).props.tasks.length >= 2; })(), "The first List
component representing the tasks for today should have 2 or more items.");'
- text: The second List
component representing the tasks for tomorrow should have 3 or more items.
testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.find("List").get(1).props.tasks.length >= 3; })(), "The second List
component representing the tasks for tomorrow should have 3 or more items.");'
- - text: The List
component should render the value from the tasks
prop in the p
tag.
- testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.find("p").get(0).props.children === mockedComponent.find("List").get(0).props.tasks.join(", ") && mockedComponent.find("p").get(1).props.children === mockedComponent.find("List").get(1).props.tasks.join(", "); })(), "The List
component should render the value from the tasks
prop in the p
tag.");'
+ - text: The List
component should render the value from the tasks
prop in the p
tag as a comma separated list, for example walk dog, workout
.
+ testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.find("p").get(0).props.children === mockedComponent.find("List").get(0).props.tasks.join(", ") && mockedComponent.find("p").get(1).props.children === mockedComponent.find("List").get(1).props.tasks.join(", "); })(), "The List
component should render the value from the tasks
prop in the p
tag as a comma separated list, for example walk dog, workout
.");'
```