'How do i get new news posts to display at the top

I have a news page where i am looping through items in my database, i want the newest news post to display at the top the page, but as is newest entries are at the bottom of the list. How would i go about doing this.

<% if (!news.length) { %>
  <h1>No Current News</h1>
<% } %>
<% for (let newsPost of news) {%>
  <h3><%=newsPost.newsTitle%></h3>
  <hr class="rounded" id="titleDivider">
  <p><%=newsPost.newsText%></p>
  <hr class="rounded">
<% } %>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source