View Single Post
  #5  
Old 05-10-2010, 05:25 AM
mixxit
Hill Giant
 
Join Date: Sep 2006
Posts: 155
Default

my @moo = (221,222,223);
my $choice = rand @moo;
my $picked = $moo[$choice];

$moo = undef;
$choice = undef;
$picked = undef;
Reply With Quote