- See screenshot in comments Done
- See screenshots in comments
- Concept Quizzes Done
- Level 1 Done
- Level 2 Done
#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