diff --git a/curriculum/challenges/english/25-front-end-development/workshop-decimal-to-binary-converter/6464b1384318a5087190950a.md b/curriculum/challenges/english/25-front-end-development/workshop-decimal-to-binary-converter/6464b1384318a5087190950a.md index 36568bfc1d4..1bcc7a9900a 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-decimal-to-binary-converter/6464b1384318a5087190950a.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-decimal-to-binary-converter/6464b1384318a5087190950a.md @@ -9,7 +9,7 @@ dashedName: step-104 Now that you've targeted the correct element, you can update its text after the delay you specified earlier. -Using the `.getElementById()` method, set the `textContent` property of the targeted element equal to the `msg` property of the current object. +Set the `textContent` property of the targeted element equal to the `msg` property of the current object by using property chaining on your `.getElementById()` method directly. # --hints--