scegli numeri1 come ti pare e piace,
scegli numeri2 come ti pare e piace,
(ubound) aB= ubound( numeri1)
(ubound) aC= ubound( numeri2)
dim aD= (ubound) aB+(ubound) aC) -------> cosi dimensiono l'array aD
for x = 1 to (ubound) aB
aD(x)= aB(x) 'oppure leggi la array numeri1
next
for x = (ubound) aB+1 to (ubound) aD
aD(x)= aC(x)
next
-------------
in aD hai tuti i numeri scelti con scegli numeri1 e sceglinumeri2 o altro.
per sciverli in output vedi tu come fare.
prova questa soluzione