Ruby arrays the ruby way (with code blocks). Instanciate an array from words >> els = %w(one two three four five) => ["one", "two", "three", "four", "five"] Iterate over the array >> els.each { |el| puts el } one two three four five Build an...