Removing items in middle of array & shifting down

what’s the best way to do take out items from the middle of the array and shift all items above the deleted item down one?
let’s say I have 10 items in an array, index range 0-9, and I take item 5 (array index 4) out, and then I want to shift items in range 5-9 down to range 4-8, leaving me with 9 items left. what’s the easiest way to do this in AS3?