randomly return a sample from an array code example
Example: randomly return a sample from an array
let randomValue = myArray[Math.floor(Math.random() * myArray.length)];
let randomValue = myArray[Math.floor(Math.random() * myArray.length)];