Increase Elements in List

A Python function to increment every element in a list by 1.

In this task, your assignment is to write a Python function that takes as input a list of integers, increments each integer by 1, and returns the updated list. ### Parameters - `numbers`: A list of integers. Each value in the list should be incremented (0 ≤ numbers.length ≤ 1000). ### Return Value - The function should return a list where each integer from the provided input list `numbers` has been incremented by 1. ### Examples ```python # After incrementing each value by 1, the output is: [2,6,8,10,12,14] increment_list([1,5,7,9,11,13]) # returns: [2,6,8,10,12,14] # After incrementing each value by 1, the output is: [101, 1] increment_list([100,0]) # returns: [101,1] # The input list is empty, so no operation is performed increment_list([]) # returns: [] ``` ## Template Code ```python def increment_list(numbers): pass ```