Write a SQL query that returns the 5 most recent articles from a table of articles, sorted by published date.
The candidate's solution is correct and demonstrates a good understanding of SQL. The solution is optimal because it uses the ORDER BY and LIMIT clauses to sort the articles by published date in descending order and then limit the results to the 5 most recent articles.
Evaluated at: 2022-11-15 14:15:33