Is it possible to CULL or DISPATCH elements inside a list / array?

I did figured out myself how to do it. So I will write it down here in case anybody else have the same doubt.

So, since the loop analyze each element of the array individually:

  1. you need to create a “target point” variable.

  2. Set the variable to get the data from the loop each time the branch is true.

  3. Create a new array with the target point variable which will only take the true values.

I attach the blue print so it’s more clear.