Removing Value From Array

The as dictionary tells me I can use array.splice to remove an element from an array like so


var myPets_array:Array = new Array("cat", "dog", "bird", "fish");
trace( myPets_array.splice(1) ); // dog,bird,fish
trace( myPets_array ); // cat

Which is all fine an dandy, but what if I want to use a value instead of the index number?

like:


var myPets_array:Array = new Array("cat", "dog", "bird", "fish");
trace( myPets_array.splice("cat") ); // dog,bird,fish
trace( myPets_array ); // cat

?