print "Please enter the files to be removed: \n"; my @removed_files = split, ; foreach my $file (@removed_files) { print "FILE: $file \n"; unlink ($file); } ~ #### Please enter the files to be removed: Use of uninitialized value $_ in split at ./Chapter13_Exer4a line 14.