Write a method named stutter that accepts a queue of integers as a parameter and replaces every element with two copies of itself. for example, if a queue named q stores {1, 2, 3}, the call of stutter(q); should change it to store {1, 1, 2, 2, 3, 3}.