How to get new list pair(x,y) by list chop

I have multi list:
list 1 = [1,2,3]
list 2 = [6,7,8,9]

How to get new list by pair:
new list = [1,2]; [1,3]; [2,3]; [6,7]; [6,8]; [6,9]; [7,8]; [7,9]; [8,9]

3 Likes

Thank you so much ! <3