Array Ruby

ceiling = 50
p [1, 10, 49, 50.1, 200].select { |x| x < ceiling }
# => [1, 10, 49]