I have the following code
class MyClass
def my_method(first,last)
#this should take 2 numbers as arguments and should return the keys value(s) as a combined string
end
private
def lines_of_code
{
1 => "This is first",
2 => "This is second",
3 => "This is third",
4 => "This is fourth",
5 => "This is fifth"
}
end
m = MyClass.new
m.my_method(2,4) # This is secondThis is thirdThis is fourth"
I should pass a range to my_method that inturn should return me the combined value string. Sorry if this is already posted.
Thanks in advance.