Question: Remove Specific List Element

I have a list like     K := [A, B, C, D, E, F, G, H, I];    


Now I want to remove list element K[3], K[6] and K[8] what command do I use to do that ?  remove ?

The list is much longer so manual deletion is not an option

Please Wait...