JSFiddle - React, Tailwind, and code Playground

HTML

<div id="myFact"></div>

JavaScript

var myFact = new Array();
    myFact[0] = "I have a dog";
    myFact[1] = "My favorite spport is hockey";
    myFact[2] = "I like chocolate";
    myFact[3] = "Orange is my favorite color";
var myRandom = Math.floor(Math.random()*myFact.length);
document.getElementById('myFact').innerHTML= myFact[myRandom];