you’re doing great so far, although they need you to solve the code in a different way. you should read what they want slowly , you are trying to access the innerHTML of target but they need you to access the innerHTML of targetInputContainer. dont’t hard code it, i hope my answer helps
The instructions are perhaps a little confusing as the example given in the challenge description isn’t exactly the correct approach for this case.
There is no element with an id attribute of targetInputContainer, so you can’t use the getElementById method here. Instead it is a variable, so you can concatenate directly using the variable name and innerHTML property alone.
It happens quite frequently that the examples given in the challenge description are the incorrect approach. It would be great if freeCodeCamp reviewed the examples and gave better, more pertinent ones perhaps. Otherwise students can go in circles for ages, which is quite frustrating.
It took me a few minutes to figure this one out too, and the result is relatively simple. I do think some of the issue is related to how to the question is worded.