I have a predefined array list that I need to be formatted into a numbered list in HTML. I'm very new to html with javascript and am having a hard time with dom manipulation
here is my js code var fruits = ['Apples', 'Oranges', 'Pears', 'Grapes', 'Pineapples', 'Mangos'];
here is my html
<div id="fruits">
</div>
<h3>Fruits</h3>
`
its very bare bones and that's simply because I have no idea where to start.