Geekific

What will be the output of the following code?
--------------------
public static void main(String[] args) {
List<String> list = Arrays.asList("one", "two", "three", "four");
Optional<String> result = list.stream().filter(s -> s.endsWith("e")).findAny();
System.out.println(result.orElse("none"));
}

1 month ago | [YT] | 9