How to show random photos or videos every time we enter different in one passage ?
I wrote this code in the passage, but the photos does not appear
<img id="random-image" src="">
<<script>>
$(document).on(':passagerender', function() {
// Fotoğraf URL'lerini buraya ekleyin
var photoURLs = [
'https://miro.medium.com/v2/resize:fit:728/0*sCItlt4jnF-Q9igZ.jpg',
'https://www.hepsiburada.com/hayatburada/wp-content/uploads/2023/08/iyi-insan-olmanin-altin-kurallari2.jpg',
'https://example.com/photo3.jpg',
// ... diğer fotoğraf URL'leri
];
// Rastgele bir fotoğraf seçme işlemi
var randomIndex = Math.floor(Math.random() * photoURLs.length);
var randomPhotoURL = photoURLs[randomIndex];
// Rastgele seçilen fotoğrafın gösterilmesi
$('#random-image').attr('src', randomPhotoURL);
});
<</script>>