1. Loop that counts to 5
0, 1, 2, 3, 4, 5,
2. Loop that counts to 10 using even numbers
0, 2, 4, 6, 8, 10,
3. Loop that counts to 20 skipping 13
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20,
3a. List that counts to 20 skipping 13
1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 |
11 | 12 | 14 | 15 |
16 | 17 | 18 | 19 | 20 |