underscore/shuffle()

Underscore.js
(function(){
  const s1Array = [1, 3, 5, 7, 9];
  var s1 = _.shuffle(s1Array);
  console.log(s1);
})();