Source code for display

please give me the code for the queue.display() function used in the main function

Hey @Syed-Siddiqui-2497215583854102
public void display() {
for (int i = 0; i < this.size(); i++) {
int idx = (i + this.front) % this.data.length;
System.out.print(data[idx] + " ");
}
System.out.println();
}