]
var randomizedImage = modalData[Math.floor(Math.random() * modalData.length)];
window.onload = function () {
modalImage.src = randomizedImage.imgUrl;
modalLink.href = randomizedImage.link;
setTimeout(function () {
document.body.appendChild(modalComponent);
}, 3000)
}
crossButton.onclick = function (e) {
e.preventDefault()
document.getElementsByClassName("custom-modal-component")[0].style.display = "none"
}
overlay.onclick = function(){
document.getElementsByClassName("custom-modal-component")[0].style.display = "none"
}
}