def reconstruct_stack(original, minipiles):
    '''Return a list of items representing the order in which the minipiles
    should be pushed to recreate the original stack. 

    Keyword arguments:
    original - the original stack of items (a Stack instance) 
    minipiles - a list of minipiles (each list element is a Stack instance) 
    
    '''
    pass