const verses = [ { text: "Therefore do not worry about tomorrow, for tomorrow will worry about itself. Each day has enough trouble of its own.", ref: "Matthew 6:34" }, { text: "Be still, and know that I am God.", ref: "Psalm 46:10" }, { text: "For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life.", ref: "John 3:16" }, { text: "Life can only be understood backwards; but it must be lived forwards.", ref: "Søren Kierkegaard" } ]; const v = verses[Math.floor(Math.random() * verses.length)]; document.getElementById("verse").innerHTML = '“' + v.text + '”' + '— ' + v.ref + '';