Help for this page

Select Code to Download


  1. or download this
    @ryaar =
      map  { $_->[ 0 ] }
      sort { $a->[ 1 ] <=> $b->[ 1 ] }
      map  { [ $_, rand ] }
      @array
    
  2. or download this
    @random = sort { .5 <=> rand(1) } @array;    # DO NOT USE THIS!