How to combine the items in two lists?

I have two data series as two lists, and I want to combine them into one list, the paired item as one sub list. For example, [1,2,3], and [4,5,6], then combine them as [[1,4],[2,5],[3,6], as in the attachment.
Is there any function I can use? Thanks! I tried list combination, but it doesn’t work as my goal. I am thinking of getting some index and select the items, but wondering if there is any easy method.

make a list by two code blocks " 1…3" and “4…6”

and then use List.Transpose.

1 Like

4 Likes

Thanks!