What does the following Java code output?
import java.util.Stack;
public class Main {
public static void main(String[] args) {
Stack<String> stack = new Stack<>();
stack.push("First");
stack.push("Second");
stack.pop();
System.out.println(stack.peek());
}
}