Assessment wanted for Loops 1 skill test".
@anjali_mool If you want an assessment, you need to send me a link to your code in an online editor so I can see if it is correct.
I am wondering if our instructions are not very clear, as a number of people seem to be confused by this.
Sorry I will share the code.
At the moment, the loop isn’t actually doing anything, then after the end of the loop you are just putting the array values all into the <ul>
Inside each loop iteration you need to create a new <li>
, set its textContent
equal to the current array item, and then add the <li>
as a child of the <ul>
.
1 Like