What is the output of the following snippet of code?
```
L = ['four', 'one', 'ninety', 'three']
out = []
while L != []:
mini = len(L[0])
word = L[0]
for number in L:
if len(number) < mini:
mini = len(number)
word = number
out.append(word)
# L.remove(word) removes word from the list L
L.remove(word)
print(out)
```