How about this code, will it work? ``` public Long get(final int z) { final int[] input = { 1, 2, 4, 8, 16 }; return IntStream.of(input).map(x -> x + z).sum(); } ``` Let's try to reproduce.