shuffle Shuffles the elements
[1] pry(main)> [1, 2, 3].shuffle => [2, 3, 1] [2] pry(main)> [1, 2, 3].shuffle => [3, 2, 1]
Recommended Posts