async function getArticles(){
const response = await fetch('https://gorest.co.in/public/v1/posts');
const response = await response.json()
console.log(response); // вывод этого стоит приложить к вопросу
response.data.forEach((article) => console.log(article.title));
}
getArticles(); // выведет в консоль кучу title'ов