Now it’s time to read from our queue.
Console.WriteLine("Dequeing oldest element in the queue: {0} ", numbers.Dequeue());

Time to run the app!

Great! Now add a peek to the queue and run the app again.
Console.WriteLine("Peeking at the now oldest item in the queue {0}", numbers.Peek());

