<% for(let count = 0; count <= 100; count++ ){ %>
<br><%= count %>
<%# will output the numbers 1-100 %>
<% } %>
<% articles.forEach((article)=> { %>
<li>
<h2>
<%= article.title %>
</h2>
<p>
<%= article.body %>
</p>
</li>
<hr />
<% }) %>