Hello

I have 2 arrays
ArrA = Array("A", "B", "C", "D", "E", "F")
ArrB = Array(0, 0, 1, 0, 1, 0)

I want to filter array ArrA by array ArrB
The desired result is a new array MyArr
which will contain only the values different from zero in the product of the two arrays

I tried using:
MyArr = Filter(ArrA, ArrB)

the desired result
MyArr (0)="C"
MyArr (1)="E"

Is there a simple way to do it without loops?