I use an data object to store and remove blobs using data.instructAudios = [];
When I use splice to remove specific blob by its index like:
data.instructAudios.splice(index, 1);
I get a wired log with empty element in the array!!!
What is this and how can I remove blobs by their index without this bug?