write a method that accepts a stack of integers and prints the stack in the reverse order with each value duplicated. if the stack mystack contains bottom: 4 7 12 34 56 : top then the output should be: 56 56 34 34 12 12 7 7 4 4 you must return the stack to its original state before you end the method. meaning that mystack must have the values 4 7 12 34 56 you can only use another stack to solve the problem. you can use the stack class in java. the methods in this class are push, pop, isempty, peek