How to directly access 3rd entry from mailbox without disturbing first two?

Hi,
is it possible to access ??

In reply to surya narayana Gutha:

declare a queue
using this mailbox to update this queue. and we allow accessing queue item via the index in SystemVerilog

In reply to surya narayana Gutha:

The built-in mailbox class only provides FIFO access. If want to query or manipulate the contents of the mailbox, you need to write your own using a combination of queues and semaphores.