list() assigns the values starting with the right-most
parameter. If you are using plain variables, you don't have to worry
about this. But if you are using arrays with indices you usually expect
the order of the indices in the array the same you wrote in the
list() from left to right; which it isn't. It's
assigned in the reverse order.
Note:
list() only works on numerical arrays and assumes
the numerical indices start at 0.