集合(Collections)shuffleshuffle_.shuffle(list)返回一个随机乱序的 list 副本, 使用Fisher-Yates shuffle 来进行随机乱序._.shuffle([1, 2, 3, 4, 5, 6]);=> [4, 1, 6, 3, 5, 2]