import java.util.*;
import java.util.stream.Collectors;
public class MyClass {
public static void main(String args[]) {
int[] arr = {2, 4, 6, 8, 1};
List<Integer> list = Arrays.stream(arr)
.boxed()
.collect(Collectors.toList());
System.out.println(list);
}
}
/*
run:
[2, 4, 6, 8, 1]
*/