(What did you set out to accomplish this module?)
Fill in how you would grade yourself from 1-4 in the following categories this module:
#Iteration Methods
##.each Grabs each item in the array so the declared variable represents the object rather than the value of the object. This is different than iterating through an array by the index.
### .each iteration example
numbers = [1,2,3,4]
numbers.each do |number|
puts number