Help for this page

Select Code to Download


  1. or download this
    my @set = ( 1, 2, 3, 5, 8, 13, 21 );
    my $random = $set[rand(@set)];
    
  2. or download this
    my @set = qw( apple orange banana cucumber );
    my $random = $set[rand(@set)];