Help for this page

Select Code to Download


  1. or download this
      $item = $a[ rand @a ];
    
  2. or download this
      my @items;
      for ( 1 .. $n )
      {
        push @items, $a[ rand @a ];
      }
    
  3. or download this
      my @items;
      for ( 1 .. $n )
      {
        push @items, splice @a, rand @a, 1;
      }