JSFiddle - React, Tailwind, and code Playground
HTML
<img src="http://placehold.it/200&text=1" id="picture" height="200px" width="200px">
JavaScript
function reload() {
var imageObj = new Image();
imageObj.src = 'http://placehold.it/200&text=' + Math.floor(Math.random() * (9 - 3) + 3);
document.getElementById('picture').src = imageObj.src;
window.setTimeout(reload, 1000);
}
reload();