cploutarchou
3/12/2020 - 10:13 PM

Select Random item from Array

Select Random item from Array

   function selectRandomArrayItem(array) {
          return array[Math.floor(Math.random() * array.length)];
      }