@gudolik
Dont use foreach at all just use resource name and it will use different line
in each thread. After that you can parse that resource line if needed. Resources
are created in BAS with intention to ease up usage with multiple threads.
When you parse that particular line you can use parsed values, in your case
3 values and that should be enough to work as intended. But if you want you
could create a new list and add these 3 values into it and than use "foreach" loop
against it, but I dont see the reason for that, since you already have 3 separate
parsed elements with unique names that you choose in parse action, and in each
thread these unique variables will have different values according to particular
resource line used in that particular thread.