Combine lists with indexes next to each other

How to combine two lists, to have indexes from lists next to each other?
For example, there is a list:
A
B
C

and a list:
1
2
3

I’d like to achieve:
A
1
B
2
C
3

Transpose first and second list then flatten

3 Likes