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
  • 0,
  • 1,
  • 2,
  • 3,
  • 4,
  • 5,
  • 6,
  • 7,
  • 8,
  • 9,
  • 10,
  • 11,
  • 12,
  • 14,
  • 15,
  • 16,
  • 17,
  • 18,
  • 19,
  • 20,


  • 3b. Table that counts to 20 skipping 13 in rows of 5
    12345
    678910
    11121415
    1617181920


    My array