Hunter Hunter 15-07-2024 Computers and Technology High School Given the following line of code, which list is produced by the expression `values[3:8]`?```pythonvalues = [79, 40, 18, 32, 95, 66, 58, 51, 20, 62]```A. [15, 32, 95, 66, 58, 51, 20]B. [32, 95, 66, 58, 81]C. [32, 95, 66, 58, 81, 20]D. [15, 32, 95, 66, 58, 81]