--- id: 6141fed65b61320743da5894 title: Step 15 challengeType: 0 dashedName: step-15 --- # --description-- To increase the page accessibility, the `role` attribute can be used to indicate the purpose behind an element on the page to assistive technologies. The `role` attribute is a part of the _Web Accessibility Initiative_ (WAI), and accepts preset values. Give each of the `section` elements the `region` role. # --hints-- You should give the first `section` element the `region` role. ```js assert.equal(document.querySelectorAll('section')?.[0]?.getAttribute('role'), 'region'); ``` You should give the second `section` element the `region` role. ```js assert.equal(document.querySelectorAll('section')?.[1]?.getAttribute('role'), 'region'); ``` You should give the third `section` element the `region` role. ```js assert.equal(document.querySelectorAll('section')?.[2]?.getAttribute('role'), 'region'); ``` # --seed-- ## --seed-contents-- ```html