🎯 What you'll practice: Transforming, filtering, and reducing arrays without mutation.
1-B 2-B 3-A 4-B | 5 = undefined 6 = mutate 7 = [1,2,3].map(n=>n*2) → [2,4,6] 8 = [5,12,8,20].filter(n=>n>10) → [12,20] 9 = React detects changes by comparing old and new references; mutating an array in place keeps the same reference, so React can miss the update entirely | 10 = orders.reduce((sum, o) => sum + o.total, 0)