Type a varargs method signature space to flip Type a varargs method signature Answer public static int sum(int... nums) { Inside the method, nums is an int[]. The ... must be on the last parameter; only one varargs parameter is allowed per method.