Question: How may I assign the elements of a list or Array to another expression?

For example I tried:

L:=[a,b,c];
for i in L do
i:=Array(1..16):
end do:
 

I wanted to create three Arrays a, b and c.

Please Wait...