LIFO

Last In First Out

[] -> push(1) push(2) -> [1, 2] // Order doesn't change between LIFO vs FILO
[1, 2] -> pop() -> [1] // Value pushed last gets popped

Meta