JSFiddle - React, Tailwind, and code Playground
by xxxvvvxxx
HTML
<img src="" id="img" style="opacity:0" />
JavaScript
var x = ['https://ssl.pstatic.net/static/kin/09renewal/banner_bingo_230404.png',
'https://ssl.pstatic.net/static/kin/09renewal/banner_roulette_220207.png',
'https://ssl.pstatic.net/static/kin/09renewal/promotion/main/rb_4_main_20230501145405.png?ver=20230501025405'
];
var choice = Math.floor(Math.random() * x.length);
document.querySelector("#img").src = x[choice];
document.querySelector("#img").style.opacity = 1;