in reply to removing x from a list
Suppose you don't want your array to have undef elements:
@array = grep {defined $_} @array; [download]