var authorsOfLongBooks = books .filter(book => book.pageCount > 1000) .map(longBooks => longBooks.author) .distinct()