--- id: 6144e818fd5ea704fe56081d title: Step 28 challengeType: 0 dashedName: step-28 --- # --description-- Give each `fieldset` an adequate `name` attribute. Then, give both unordered lists a `class` of `answers-list`. Finally, use the `legend` to caption the content of the `fieldset` by placing a true/false question as the text content. # --hints-- You should give the first `fieldset` an adequate `name` attribute. _Hint: I would use `html-question-one`_ ```js assert.notEmpty(document.querySelectorAll('fieldset')?.[0]?.name); ``` You should give the second `fieldset` an adequate `name` attribute. _Hint: I would use `html-question-two`_ ```js assert.notEmpty(document.querySelectorAll('fieldset')?.[1]?.name); ``` You should give the first `ul` element a `class` of `answers-list`. ```js assert.equal(document.querySelectorAll('fieldset > ul')?.[0]?.className, 'answers-list'); ``` You should give the second `ul` element a `class` of `answers-list`. ```js assert.equal(document.querySelectorAll('fieldset > ul')?.[1]?.className, 'answers-list'); ``` You should give the first `legend` element text content. ```js assert.notEmpty(document.querySelectorAll('legend')?.[0]?.textContent); ``` You should give the second `legend` element text content. ```js assert.notEmpty(document.querySelectorAll('legend')?.[1]?.textContent); ``` You should not use the same text content for both `legend` elements. ```js assert.notEqual(document.querySelectorAll('legend')?.[0]?.textContent, document.querySelectorAll('legend')?.[1]?.textContent); ``` # --seed-- ## --seed-contents-- ```html