--- id: 6145f47393fbe70c4d885f9c title: Step 38 challengeType: 0 dashedName: step-38 --- # --description-- Nest one `textarea` element within the second `div.answer` element, and set the number of rows and columns it has. Then, give the `textarea` placeholder text describing an example answer. # --hints-- You should nest one `textarea` element within the second `div.answer` element. ```js assert.exists(document.querySelectorAll('div.answer')?.[1]?.querySelector('textarea')); ``` You should give the `textarea` a `rows` attribute with a number. ```js const rows = document.querySelectorAll('div.answer')?.[1]?.querySelector('textarea')?.getAttribute('rows'); assert.notEmpty(rows); assert.isNotNaN(Number(rows)); ``` You should give the `textarea` a `cols` attribute with a number. ```js const cols = document.querySelectorAll('div.answer')?.[1]?.querySelector('textarea')?.getAttribute('cols'); assert.notEmpty(cols); assert.isNotNaN(Number(cols)); ``` You should give the `textarea` a `placeholder` attribute with text describing an example answer. ```js assert.notEmpty(document.querySelectorAll('div.answer')?.[1]?.querySelector('textarea')?.getAttribute('placeholder')); ``` # --seed-- ## --seed-contents-- ```html