Useful Array and Hash Methods
Discover powerful methods like compact, flatten, merge, sort, and keys.
Useful Array and Hash Methods is a free Ruby Academy lesson on CoddyKit — lesson 3 of 3. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Ruby Academy learning path, one of 3 lessons in the course, and your progress syncs across the web and the CoddyKit app.
1
Useful Array and Hash Methods
Ruby provides many useful methods to work with Arrays and Hashes efficiently.
In this lesson, you will explore methods like compact, flatten, merge, sort, and keys.

2
Using Compact
The compact method removes nil values from an array.
numbers = [1, nil, 2, nil, 3]
puts numbers.compact3
Using Flatten
The flatten method converts nested arrays into a single array.
nested_array = [[1, 2], [3, 4], [5, 6]]
puts nested_array.flatten4
Using Merge
The merge method combines two hashes.
hash1 = {a: 1, b: 2}
hash2 = {b: 3, c: 4}
puts hash1.merge(hash2)5
Using Sort
The sort method arranges elements in ascending order.
numbers = [5, 3, 8, 1, 2]
puts numbers.sort6
Using Reverse
The reverse method reverses the order of elements in an array.
numbers = [1, 2, 3, 4, 5]
puts numbers.reverse7
Using Keys
The keys method returns all keys from a hash.
person = {name: 'Alice', age: 25, city: 'New York'}
puts person.keys8
9
Using Values
The values method returns all values from a hash.
person = {name: 'Alice', age: 25, city: 'New York'}
puts person.values10
Congratulations!
You have learned useful array and hash methods in Ruby.
Next, you will explore object-oriented programming concepts in Ruby.

Frequently asked questions
Is the “Useful Array and Hash Methods” lesson free?
Yes — the full text of “Useful Array and Hash Methods” is free to read here on the web, and the Ruby Academy course includes 3 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Ruby Academy course, upgrade to CoddyKit PRO.
What will I learn in “Useful Array and Hash Methods”?
Discover powerful methods like compact, flatten, merge, sort, and keys. You practise Ruby Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.
Do I need any experience to start Ruby Academy?
No prior experience is required. Ruby Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 3 of 3, so you can start here or from the beginning and move at your own pace.
How long does the “Useful Array and Hash Methods” lesson take?
Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.
Can I write and run code in this Ruby Academy lesson?
Yes. Every Ruby Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.
All lessons in this course
- Arrays and Hashes
- Iterating Over Collections
- Useful Array and Hash Methods