This visual execution shows how MongoDB's $min and $max accumulators work in an aggregation pipeline. Documents are grouped by the 'item' field. For each group, the pipeline tracks the minimum and maximum 'price' values. Initially, the first document's price sets both minPrice and maxPrice. As more documents are processed, minPrice updates only if a smaller price is found, and maxPrice updates only if a larger price is found. The execution table traces each document's effect on these values step-by-step. The variable tracker summarizes how minPrice and maxPrice change for each group. Key moments clarify common confusions, such as why initialization is needed and how updates happen. The quiz tests understanding by referencing specific steps and values in the execution. This helps beginners see exactly how $min and $max accumulate values during aggregation.