//selection: 7, 16, 7, 18
//name: j -> answer
package simple;

public class Vararg1 {
    int foo(int i, int... array) {
        return 42;
    }
}
