diff --git a/curriculum/challenges/english/blocks/lab-stylized-to-do-list/66c051d13a6a20255a963695.md b/curriculum/challenges/english/blocks/lab-stylized-to-do-list/66c051d13a6a20255a963695.md index 22492f0d314..8e9999500ff 100644 --- a/curriculum/challenges/english/blocks/lab-stylized-to-do-list/66c051d13a6a20255a963695.md +++ b/curriculum/challenges/english/blocks/lab-stylized-to-do-list/66c051d13a6a20255a963695.md @@ -100,6 +100,7 @@ The `id` and `for` attributes of the `input` and `label` elements pairs, should ```js const labels = document.querySelectorAll("label"); +assert.isNotEmpty(labels); document.querySelectorAll("input").forEach((input, index) => { assert.equal(input.id, labels[index].htmlFor);