Public Sub subRoutine1 (alfa As List, beta As Map) As String
alfa.Initialize
beta.Initialize
alfa.AddAll(Array As String("One", "Two", "Three", "Four", "Five"))
beta.Put("ciao", "Hello")
beta.Put("mondo", "World")
Return "why doesn't the value return?"
End Sub