French Vanilla
3.00
--- id: 5f7b87422a560036fd03ccff title: Step 51 challengeType: 0 dashedName: step-51 --- # --description-- For the two `p` elements you just added, add `dessert` as the value of the first `p` element's `class` attribute and the value `price` as the second `p` elements `class` attribute. # --hints-- You should have one `p` element with the `dessert` class. ```js assert($('.dessert').length === 1); ``` Your `p` element with the text `Donut` should have the `dessert` class. ```js assert($('.dessert')[0].innerText.match(/donut/i)); ``` Your `p` element with the text `1.50` should have the `price` class. ```js assert($('.price').last().text().match(/1\.50/)); ``` You should not have any spaces between your `p` elements. ```js assert(!code.match(/<\/p>\s+