const btn = document.querySelector('.btn');
const out = document.querySelector('.out');
btn.addEventListener('click', () => {
btn.style.background = '#C792EA';
btn.textContent = 'You changed me! 🎉';
out.textContent = 'Nice work!';
});
// Change the colour above, then
// press Run to see it update live.