// "Replace Stream API chain with loop" "true-preview" import java.util.Arrays; public class Test { public static void test(String[] arr) { Arrays.stream(arr, 1, arr.length - 1).forEach(System.out::println); } }