Going through the tutorial right now, I am confused as to what the {...} and the |number|mean in these two lines:
array.find { |number| number * 2 == 10 } # => 5
array.find { |number| number * 2 == 11 } # => nil
Could not find an explanation in earlier notes so I had to look them up. Figured it out in the end on my own, but it would be nice if a note covered this.