--- id: 6143920c8eafb00b735746ce title: Step 22 challengeType: 0 dashedName: step-22 --- # --description-- Even though you added a `placeholder` to the first `input` element in the previous lesson, this is actually not a best-practice for accessibility; too often, users confuse the placeholder text with an actual input value - they think there is already a value in the input. Remove the placeholder text from the first `input` element, relying on the `label` being the best-practice. # --hints-- You should remove the `placeholder` attribute from the first `input` element. ```js assert.isEmpty(document.querySelectorAll('input')?.[0]?.placeholder); ``` # --seed-- ## --seed-contents-- ```html