How to create multiple records with only 1 value

Split() will generate an array but you can only iterate one array at a time with the iterator. Here you’re trying to iterate 4 arrays and that won’t work.

It’s best to use the join() function to append the arrays after split() first to get one array and then you can iterate it.