Internal representation of the queue q

Draw internal representation of the queue q for each step of the following code:

ArrayBoundedQueue q = new ArrayBoundedQueue(7);
q.enqueue(“D”);
q.enqueue(“A”);
q.dequeue();
q.enqueue(“B”);
q.enqueue(“C”);
q.enqueue(“E”);
q.dequeue();