const imageContainer = document.getElementById('imagecontainer'); const images = ['/cgi/asset/Case_Study_Around_the_world_with_Alma_(5)_trTRZJIBqLtVENzXUIDVs.png', '/cgi/asset/4_JU43rdrfJGQ4dWP7CAQK6.png']; let currentIndex = 0; function updateImage() { imageContainer.querySelector('img').src = images[currentIndex]; } document.getElementById('previous')('click', () => { updateImage(); }); document.getElementById('next').addEventListener('click', () => { currentIndex = (currentIndex + 1) % images.length; updateImage(); }); updateImage(); // Display the first image