diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-recursion-by-building-a-decimal-to-binary-converter/6464ad3c9b2e6cf58224cfa9.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-recursion-by-building-a-decimal-to-binary-converter/6464ad3c9b2e6cf58224cfa9.md index 67f700f766b..dd2efa95c70 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-recursion-by-building-a-decimal-to-binary-converter/6464ad3c9b2e6cf58224cfa9.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-recursion-by-building-a-decimal-to-binary-converter/6464ad3c9b2e6cf58224cfa9.md @@ -7,9 +7,9 @@ dashedName: step-104 # --description-- -You used the `inputVal` property as the `id` attribute for your paragraph elements. Now you can target those the paragraph elements with those `id`s. +You have set the `id` attribute for your paragraph elements to the `obj.inputVal` property. -Use the `.getElementById()` method to select the element with the `id` attribute with the value of the `inputVal` property of the current object. +Now, use `getElementById` to select the element with that attribute value, again using the `obj.inputVal` property. # --hints--