const gallery = document.querySelector('.gallery');

const img = document.createElement('img'); img.src = photo.src; img.alt = photo.caption;

photos.forEach((photo) => { const photoContainer = document.createElement('div'); photoContainer.classList.add('photo-container');