my @chars = ('A'..'Z', 'a'..'z', '0'..'9');
my $s='';
$s .= $chars[int rand @chars] for 1..$n;
Defines a list of the desired characters. Initializes $s to an empty string. Uses int of rand (length of the character list in scalar context) to get a random index. Accesses the random character and appends it to $s (.= is string append). Repeats this $n times.