Vastly reduces Logical Reads of the Customers table from 1825 to only 16-18 which indicates that scanning this entire table is very costly. Drops are likewise seen in USZips (325 → 312-314).
As for Orders, logical reads increased from 209 → 210-214, showing that although indexing can speed up data retrieval, they can also introduce overhead from index maintenance. Users should use indexes with the optimization trade-offs in mind.
Similar results between single index iterations, and multiple index ones show that in this case, multiple indexes might not necessarily lead to further improvements in logical reads.