I've returned some specific elements already, but I'm trying to get back to the first one. In the code below did I return a certain element, how do I now create from the first, to the fifth, to the tenth?
def element( f )
return f if f <= 1
element( f - 1 ) + element( f - 2 )
end