Question: merging two lists?

Hello,

Is there a way to merge two lists?

For example, to merge:
a=[[1,2],[3,4]]
b=[[5,6],[7,8],[9,10]]

and get:
[[1,2],[3,4],[5,6],[7,8],[9,10]]

Thanks

Please Wait...