Pergunta de entrevista da empresa Data Template Infotech

In a Python code, a list is defined as follows: numbers = [2, 4, 6, 8, 10] Now, consider the following code snippet: for i in range(len(numbers)): numbers[i] += 2 What will be the final value of the "numbers" list after executing this code snippet?