What will the value of `mList` be at the end of the execution of the pseudocode below?
```
L = [[10, 'Raj', 5.0], [20, 'Ramesh', 3.5], [30, 'Rakesh', 2.0], [40, 'Rafat', 1.5], [50, 'Ram', 4.0]]
mList = []
foreach element in L {
x = DoSomething(element)
mList = mList ++ [x]
}
Procedure DoSomething(X)
a = init(X)
return(first(a))
End DoSomething
```