--- id: 60f85a62fb30c80bcea0cedb title: Step 22 challengeType: 0 dashedName: step-22 --- # --description-- Users will be allowed to chose either a `Personal Account` or `Business Account`. To do this, within each of the first two `label` elements, add one `input` element with `type="radio"`. # --hints-- You should add two `input` elements. ```js assert.equal(document.querySelectorAll('fieldset:nth-child(2) input')?.length, 2); ``` You should add one `input` to each of the first two `label` elements. ```js assert.exists(document.querySelector('fieldset:nth-child(2) > label:nth-child(1) > input')); assert.exists(document.querySelector('fieldset:nth-child(2) > label:nth-child(2) > input')); ``` You should give both `input` elements a `type` of `radio`. ```js assert.equal(document.querySelectorAll('fieldset:nth-child(2) input[type="radio"]')?.length, 2); ``` # --seed-- ## --seed-contents-- ```html Registration Form

Registration Form

Please fill out this form with the required information

--fcc-editable-region--
--fcc-editable-region--
``` ```css body { width: 100%; height: 100vh; margin: 0; background-color: #1b1b32; color: #f5f6f7; } label { display: block; margin: 0.5rem 0; } ```