Thanks for the feedback @b4scul3g10n. Might be that adding more context to the challenge and express the question clearer can help with this. Your question you showed can be improved on to be clearer such as
Use JavaScript to create a new <img>
element dynamically.
- Set the src attribute of the
<img>
element to the URL you received from the API. - Find the target element in the DOM where the image should be displayed.
- Insert the <
img>
element into the target element. You can do this by either: Setting the innerHTML of the target element to include the newly created<img>
element. Or appending the<img>
element directly to the target element using DOM manipulation methods like appendChild or append.
Our challenges should usually be in this structure so I’ll need to raise it with the teaching team to assess it.