Why an Array Solves a Real Problem
When you have several values of the same family, an array is much healthier than a pile of separate variables.
If you want to keep three tasks, you could create `task1`, `task2`, and `task3`. But that becomes awkward as soon as the list grows or changes.
An array lets you gather those values in one structure and treat them as an ordered list.