What will be the values of `mList` after execution of the following pseudocode?
```
L = [[1, 100, 'A'], [2, 99, 'B'], [3, 98, 'C'], [4, 97, 'D'], [5, 96, 'E']]
mList = []
foreach element in L {
z = DoSomething(element)
mList = mList ++ [z]
}
Procedure DoSomething(X)
a = rest(X)
return(first(a) * 2)
End DoSomething
```