What is the output of the following code? Recall that stacks and queues print in an [a, b, c] format from bottom/front to top/back. Stack s = new Stack(); Queue q = new LinkedList(); s.push("how"); s.push("are"); s.push("you"); while (!s.isEmpty()) { q.add(s.pop()); } System.out.println(q);