how to get a random statement from an array in javascript
// List your array itemsletTesting1=["put","things","here"]letGenerate=Math.floor((Math.random()*Testing1.length));// Generates a number of the array.// logs the resultconsole.log(Testing1[Generate])