Dynamo node to combine 2 lists alternating values in a new list

Dynamo node to combine 2 lists alternating values in a new list ?
Thank you

multiple answers possible here please show what you are after

example inputs
list1 = [‘f’, ‘o’, ‘o’]
list2 = [‘hello’, ‘world’]

desired output
[‘f’, ‘hello’, ‘o’, ‘world’, ‘o’]

Thank you

List.create -> List.transpose -> list.flatten

image

You could use List.Clean to remove possible “null” results from uneven lists.

Thank you very much !!