Course · Section 7: JavaScript in the Browser: DOM and Events · Lecture 76: Selecting and Manipulating Elements
The page has an empty `<ul id="list">`. Write JavaScript that appends exactly one `<li>` with the text `Item` to it.
Creating an element node and appending it adds the list item to the DOM safely.
Run your code to see results.