From: Love U Ruby Date: 2013-02-25T01:24:08+09:00 Subject: Re: splat operator and Ruby instance variable assignments when we write the "range" with splat(*) generally got the array as below: >> a = *(2..5) => [2, 3, 4, 5] But in the previous case why I got [2, 3, 4, 5] not [[2, 3, 4, 5]] >> a = [*(2..5)] => [2, 3, 4, 5] >> here and there concept in Ruby.... Huuhh ;-) -- Posted via http://www.ruby-forum.com/.