Home »
Ruby Tutorial »
Ruby Programs
Ruby program to get hash collection values as an array
Last Updated : December 15, 2025
Problem Solution
In this program, we will create a hash collection then we will get hash values as an array using the values() method, and print the result.
Program/Source Code
The source code to get hash collection values as the array is given below. The given program is compiled and executed on Windows 10 Operating System successfully.
# Ruby program to get hash collection
# values as array
hash = {"101" => "Arun", "102" => "Sumit", "103" => "Mukesh"};
array=hash.values();
puts "Values as array: ",array;
Output
Values as array:
Arun
Sumit
Mukesh
Explanation
In the above program, we created a hash collection to store student information. Then we used the values() method to get values from the hash collection as an array and printed the result.
Ruby Hashes Programs »
Advertisement
Advertisement