diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/check-radio-buttons-and-checkboxes-by-default.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/check-radio-buttons-and-checkboxes-by-default.md index 4767266d49..0e9f5fe7e6 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/check-radio-buttons-and-checkboxes-by-default.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/check-radio-buttons-and-checkboxes-by-default.md @@ -35,6 +35,18 @@ Your first checkbox on your form should be checked by default. assert($('input[type="checkbox"]').prop('checked')); ``` +You should not change the inner text of the `Indoor` label. + +```js +assert.equal(document.querySelector('label[for="indoor"]')?.innerText?.trim(), 'Indoor'); +``` + +You should not change the inner text of the `Loving` label. + +```js +assert.equal(document.querySelector('label[for="loving"]')?.innerText?.trim(), 'Loving'); +``` + # --seed-- ## --seed-contents--