Order of data gets out of sync on export

I'm exporting a name, address, and up to six old addresses. The data itself shows correctly in the preview, but the csv file does not put everything on a line or in a way that makes it easy to associtate the name with the addresses

I'm using Element Attribute with title

https://www.fastpeoplesearch.com/name/rai_springfield-ma

Sitemap:
{"_id":"test","startUrl":["https://www.fastpeoplesearch.com/name/rai_springfield-ma"],"selectors":[{"id":"name","type":"SelectorText","parentSelectors":["_root"],"selector":"div.card:nth-of-type(n+3) span.larger","multiple":true,"regex":"","delay":0},{"id":"address","type":"SelectorElementAttribute","parentSelectors":["_root"],"selector":".card-block div strong a","multiple":true,"extractAttribute":"title","delay":0},{"id":"oldaddress1","type":"SelectorElementAttribute","parentSelectors":["_root"],"selector":"div.col-md-6:nth-of-type(1) a","multiple":true,"extractAttribute":"title","delay":0},{"id":"oldaddress2","type":"SelectorElementAttribute","parentSelectors":["_root"],"selector":"div.col-sm-12:nth-of-type(2) a","multiple":true,"extractAttribute":"title","delay":0},{"id":"oldaddress3","type":"SelectorElementAttribute","parentSelectors":["_root"],"selector":"div.col-sm-12:nth-of-type(3) a","multiple":true,"extractAttribute":"title","delay":0},{"id":"oldaddress4","type":"SelectorElementAttribute","parentSelectors":["_root"],"selector":"div.col-sm-12:nth-of-type(4) a","multiple":true,"extractAttribute":"title","delay":0},{"id":"oldaddress5","type":"SelectorElementAttribute","parentSelectors":["_root"],"selector":"div.col-sm-12:nth-of-type(5) a","multiple":true,"extractAttribute":"title","delay":0},{"id":"oldaddress6","type":"SelectorElementAttribute","parentSelectors":["_root"],"selector":"div:nth-of-type(6) a","multiple":true,"extractAttribute":"title","delay":0}]}

I'm doing better with this. I'm clicking the name link and getting the addresses from that page. The format isn't pretty, but it;s usable. The issue I'm currently seeing is that although the previous addresses show in the preview, only the first gets exported with the results. Any help is appreciated.

{"_id":"test3","startUrl":["https://www.fastpeoplesearch.com/name/rai_springfield-ma"],"selectors":[{"id":"namelink","type":"SelectorLink","parentSelectors":["_root"],"selector":".card-title a","multiple":true,"delay":0},{"id":"address","type":"SelectorElementAttribute","parentSelectors":["namelink"],"selector":"#current_address_section a","multiple":true,"extractAttribute":"title","delay":0},{"id":"previous","type":"SelectorElementAttribute","parentSelectors":["namelink"],"selector":".address-link a","multiple":true,"extractAttribute":"title","delay":0}]}

Ok. I'm getting all the data now. Once I sort the CSV file and can see what I need. I'm wondering what the easiest what to clean up the results would be. Is there a way with Regex to pull a name out of the text? I tried looking at the online doc, but don't really understand it.