Capítulo 143 de 411
shuffle() randomly reorders an array in place, returning the same array (not a copy).
shuffle()
let array = [1, 2, 3, 4, 5]; gsap.utils.shuffle(array); // same array, reordered, e.g. [2, 5, 3, 1, 4]