[Solved] Returning a String array and assign it to a String array type variable in Java
Assign Variable, here you have to assign variable to method that is returning same type so… String[] xx = function String[]() In your case: String[] num = numbers(); The method here you have to create array, fill it and return it. Always according to it’s signature so if you declare a function String[] name() you … Read more