How to get list from ChatrGPT to Multiple records in AirTable

I have ChatGPT create a list of 5 email subject lines.

I want each subject line to be a separate record in Airtable. I am using the iterator but it still goes in as a bundle.
What do I need to do differently? I see that the response from ChatGPT is a bundle with values. How do I extract the individual values and create individual records?

you can try aggregating the bundles (using Aggregate Module) into one object and then pass that to the next module.

For an iterator to work you need to map an array. Use the split() function with newline as the separator to separate the email subjects into an array in the iterator module. That should output you each subject.