perl -e 'use List::Util qw(shuffle); @a=(1,2,3,4,5,6,7,8,9,10); foreach (1..24) { print join(",",shuffle(@a) )."\n"}'