in reply to How do I completely remove an element from an array?

Depends where the element is. If you know its on the left side of the array. You could use 'shift'. If its on the right, you could use 'pop'. But if you didn't know then you would want to use 'splice' in the way that the person above stated:
splice( @array, offset, length );

Originally posted as a Categorized Answer.