-- your code goes here function test(x, y, z) print(x, y, z) end function two() return 10, 11 end function three() return 10, 11, 12 end test(three()) test(two(), 12)