Help for this page

Select Code to Download


  1. or download this
    my @selection = @nums;
    for (0..7) {
    ...
    }
    
    splice(@selection, 8);
    
  2. or download this
    use List::Util qw( shuffle );
    
    my @selection = (shuffle(@nums))[0..7];