JSFiddle - React, Tailwind, and code Playground
HTML
<p id="log"></p>
JavaScript
//var times = [42, 28, 75, 50, 62]
// times = times[Math.floor(Math.random()*times.length)]
var times = 75;
while (times--) {
$('#log').append(times + "<br/>");
}