- or download this
my @arr = ('A'..'Z');
my $n = 2 ;
my $combo = join '', map { $arr[rand @arr] } (1..$n) ;
print $combo . "\n";
- or download this
my @arr = ('A'..'Z');
my $n = 2 ;
my $combo = $arr[rand @arr] x $n ;
print $combo . "\n";
- or download this
my @arr = ([]) x $count ;