Hello,
I am attempting to build out a simple flow that takes a user-input string with values separated by commas, and input the data into a CSV file. I would like each row of the CSV to be one of the values split by the delimiter (comma).
I am using the split() function to separate the data and the documentation says that it returns an array. The "Create CSV" function says that it takes an array of objects as input for the "From" parameter. What am I missing here?
I am testing this with a manual input string of "123,456".
