class C { void method(int k, String... s) { System.out.println(s[k]); } { method("a", "b", "c"); method(); } }