This visual trace shows how awk extracts fields from input lines in scripts. The script reads a line, splits it into words (fields), then prints the chosen field using $ followed by the field number. For example, $2 prints the second word. The execution table shows the input line, how it splits into fields, which field is extracted, and the output printed. Variables like Input Line, Fields, and Extracted Field change as the script runs. Key moments clarify why $2 means second word and what happens if the field is missing. The quiz tests understanding by asking about output and steps. This helps beginners see awk field extraction step-by-step.