I have created a workflow that will use an email variable to send out notifications, but to get there - I have to be able to create my array and then filter out the emails from the user data. However I'm only getting "null" in my logs whenever I test out the process.
I start by getting the items for my flow:

then I initialize an array variable to hold my names:

then I use an "Apply to Each" for the two columns that I'm getting data from (Directors and Responsible Persons) and union my varEmailNames and create an array of the aforementioned columns.

and Finally I set my variable:

and to check what I am outputting, i put it all into a new variable:

Now after all of this, I run my test and I come up with:
Output Null (1 of 2)
Output Null (2 of 2)
I was actually following this article to pull in the addresses if anyone has had any experience with this sort of thing:
I was following along by this article by John Liu
Seemed pretty logical and easy, but then i kept getting "null", so i was stumped. Hopefully someone else sees what I'm missing!