We have task to find all number in array divisal by 3 and 5, we could not able to create code for it… please assists us -
def divisiblity_test(variable1, variable2)
#Write your code here
result = []
for range(variable1, variable2)
return result
end