##
my @charsWithNoUpperCase =
@chars[grep { !defined @upChars[$_] } 0..$#upChars];
####
my @charsWithNoUpperCase
foreach my $index ( 0..$#upChars ) {
push @charsWithNoUpperCase, $chars[$index]
if !defined $upChars[$index];
}