Ruby - Methods
What will this Ruby method return?
def nested
x = 3
y = (1..5).map do |n|
n * x
end
y.select { |v| v > 10 }
end
result = nested