<script>
//Javascript Created by Computerhope https://www.computerhope.com/
//store the quotations in arrays
var images = [],
index = 0;
images[0] = "";
images[1] = "";
images[2] = "";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);
//done
</script>