Question from the Java and Craftsmanship test

What is the output of the following code? ```java try { return 42; } finally { return 1337; } ```