How to get the sequence [8, 15, 16, 23, 4, 42] ?
lost << [4, 42]
lost << 4 << 42
lost.push(4).push(42)
lost.push(*[4, 42])