I have not found an answer to my question: (maybe not the words to found it) I have two lists, I would like to add each element (and keep the order) to another list. For example:
A = ["abc", "def", "ghi"]
B = ["123", "456", "789"]
result = ["abc123", "def456", "ghi789"]
Thanks