Java 8 Anymatch Two Lists

boolean isAnyMatch = list2.stream().anyMatch(list1::contains);
Handsome Hawk