What would be the best way to delete specific indices of an array? Like array = %w{a b c d e}; indices = [0, 2, 3]; If I delete using delete_at, the order will change after the first deletion.