Return value of the Python range() function

Question:
What does the "range(1, 5)" function return?

  1. [1, 2, 3, 4, 5]
  2. [1, 2, 3, 4]
  3. (1, 2, 3, 4, 5)
  4. (1, 2, 3, 4)
Answer:
B - is the correct answer