JS QUERYSELECTORALL MAP Sampon

const posts = document.querySelectorAll(".post");

const updatedPosts = Array.from(posts).map((post) => {
  post.textContent = "No more parties";
}); 
Cruel Cormorant