I have an array of words like so
["jo","jibber","hail","noobs","smirk","awkland"]
and a seperate array with indexes
[0,3,5]
I want to remove all the elements from the previous array at those indexes. I was thinking i could use reject but im not sure exactly how i would do it. Also once i remove one element wont all the other indexes would have to change. Is there an easy way of doing this??