Hi. I created a simple flow to split a filename into an array and then output that array into a CSV Table. My issue is that the CSV Table appears to be creating a duplicate row for each index of my array.

var FileName string = "123456_Document Type_18_08_2023_16h34m"
The array is created correctly as the apply to each splits the file name at each "_".
I am using stringArray as the input for the CSV table and each value as an index of it:

What am I doing wrong?