I have two list, and want to combine the two in one nested list, with comma separate them
list A
[[1,1],[1,2],[1,3]]
list B
[[2,1],[2,2],[2,3]]
Expected output is:
[
[[1,1],[2,1]],
[[1,2],[2,2]],
[[1,3],[2,3]]
[
So we are putting two list with the same index together in a new nested list.