How do I add multiple elements to an array? March 9, 2023 by Tarik Using += operator: arr = [1] arr += [2, 3] arr # => [1, 2, 3]