what are the values that the variable num contains through the iterations of the following for loop? for num in range(2, 9, 2): 2, 3, 4, 5, 6, 7, 8, 9 1, 3, 5, 7, 9 2, 5, 8 2, 4, 6, 8