diff --git a/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-010.md b/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-010.md index 4c22a140ed..333be368d0 100644 --- a/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-010.md +++ b/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-010.md @@ -29,7 +29,7 @@ You should nest your new `div` element within the `div` with the class `containe assert(document.querySelector('.container')?.children[0]?.localName === 'div'); ``` -You should give your new `div` element a class of `container`. +You should give your new `div` element a class of `marker`. ```js const containerChildren = [...document.querySelector('.container')?.children];