JSFiddle - React, Tailwind, and code Playground
JavaScript
var text = [ 'I am human.'
, 'Some text here.'
, 'I love technology.'
, 'You are a good person'
]
$(document).mousemove(function(event) {
var randomItem = text[Math.floor(Math.random()*text.length)];
alert(randomItem);
});