Cobmine 2 lists help

I need help combinding two list using lotusscript to make one.

My first list say is

Australia, France, Germany

My second list is

Sydney, Paris, Munich

My new list needs to be

Australia - Sydney, France - Paris, Germany - Munich

Can someone point me in the right direction please.

Subject: Try:

L1 = Split(“Australia,France,Germany”, “,”)L2 = Split(“Sydney,Paris,Munich”, “,”)

Redim L3(Ubound(L1))

For i = 0 to Ubound(L1)

 L3(i) = L1(i) + " - " + L2(i)

Next