--- id: 6145f02240ff8f09f7ec913c title: Step 35 challengeType: 0 dashedName: step-35 --- # --description-- Within the `div.question-block` elements, nest one `label` element, and give the `label` elements text content # --hints-- You should nest one `label` element within the first `div.question-block` element. ```js assert.exists(document.querySelectorAll('.formrow > .question-block')?.[0]?.querySelector('label')); ``` You should nest one `label` element within the second `div.question-block` element. ```js assert.exists(document.querySelectorAll('.formrow > .question-block')?.[1]?.querySelector('label')); ``` You should give the first `label` element text content. ```js assert.isAtLeast(document.querySelectorAll('.formrow > .question-block')?.[0]?.querySelector('label')?.textContent?.length, 1); ``` You should give the second `label` element text content. ```js assert.isAtLeast(document.querySelectorAll('.formrow > .question-block')?.[1]?.querySelector('label')?.textContent?.length, 1); ``` # --seed-- ## --seed-contents-- ```html