French Vanilla
3.00
--- id: 5f3cade9993019e26313fa8e title: Step 43 challengeType: 0 dashedName: step-43 --- # --description-- Now that you know it works, you can change the remaining `article` and `p` elements to match the first set. Start by adding the class `item` to the other `article` elements. # --hints-- You should only have five `article` elements. ```js assert($('article').length === 5); ``` You should only have five `.item` elements. ```js assert($('.item').length === 5); ``` Your `.item` elements should be your `article` elements. ```js const articles = $('article'); const items = $('.item'); assert(articles[0] === items[0]); assert(articles[1] === items[1]); assert(articles[2] === items[2]); assert(articles[3] === items[3]); assert(articles[4] === items[4]); ``` # --seed-- ## --seed-contents-- ```html