void runDeleteTask(BinQueuePlusPlus &ourQueue){
    
    cout<<endl;
    cout<<"**************************************************************"<<endl;
    cout<<"**                   Running Delete Task                    **"<<endl;
    cout<<"**************************************************************"<<endl;
    cout<<endl;
    
    cout<< "The following item has been deleted from the queue: "<<endl;
    for(int x = 1; x <= 10; x++){
        //run the delete min 10 times
        cout<<  ourQueue.deleteMin()<<endl;
    }
    
    cout<< "Test the deleteMin() operation has been completed."<<endl;
}