Help for this page

Select Code to Download


  1. or download this
    my @color= qw(  lavender lightblue honeydew);
    my $color_no=int(rand($#color));
    return $color[$color_no];
    
  2. or download this
    my @colors = qw(lavender lightblue honeydew);
    my $color = $colors[rand @colors];
    return $color;