JAVA Eclipse Given the following code:
ArrayList items = new ArrayList<>();
Write a foreach using lambda expression to print all the elements of the ArrayList. (2 pts)
Write a lambda expression that returns the average of all the elements’ lengths in the ArrayList. If you have this functional interface: (5 pts)
interface Calc{
double calculate(ArrayList items);
}