Help for this page
my @selected_names = grep(!/todd/, @all_names);
my @selected_names = grep { $_ ne 'todd' } @all_names;