I have a method x that receives an entire parameter, and I have a method z which, in order to work, uses the x method.
My problem is that they require me not to use global variables. Therefore, I can not ask the x method parameter and save it in a variable and then use it in the z
methodWould anyone know of any way to do it as required?