[15:02:10] <pagios> so here is what i want to do, i would like to find and remove a Field in an array at positionX from a given collenction, and i would like to remove another field at the same position, how can i do this?
[15:02:28] <pagios> mainly i want to get the index position of field 1 , and use it to remove field 2 at that same index
[15:05:36] <pagios> example: i have "field1" : [ 'a' , 'b' , 'c' ] , field2: [ 1 , 2 ,3 ] , now say i want to remove b , i would like to remove 'b' and 2 as they are both on index 1
[15:05:52] <pagios> how is this possible in 1 shot?