×

Ruby Tutorial

Ruby Basics

Ruby Control Statements

Ruby Methods

Ruby Classes and Methods

Ruby Arrays

Ruby Sets

Ruby Strings

Ruby Classes & Objects

Ruby Hash

Ruby Tools

Ruby Functions

Ruby Built-in Functions

Misc.

Ruby Programs

Ruby program to push an array into another array

Last Updated : December 15, 2025

Problem Solution

In this program, we will create two arrays of integers with few elements. Then we will push an array into another array using the push() method.

Program/Source Code

The source code to push an array into another array is given below. The given program is compiled and executed successfully.

# Ruby program to push an array 
# into another array

arr1 = [101,102,103,104,105];
arr2 = [106,107,108,109,110];

arr1.push(arr2);

print "Array elements: \n";

i=0;

while(i<arr1.length())
    print arr1[i],"\n";
    i = i + 1;
end

Output

Array elements: 
101
102
103
104
105
[106, 107, 108, 109, 110]

Explanation

In the above program, we created two arrays arr1, arr2 with few elements. Then we pushed arr2 into arr1 using the push() method. After that, we printed the elements of arr1.

Ruby Arrays Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.