Write a Python function that takes a list of numbers and an index as inputs, and returns the number at that index. If an index error occurs, return the string “Error: Index out of bounds”.
Example 1:
Input: [1, 2, 3, 4, 5], 2
Output: 3
Example 2:
Input: [1, 2, 3, 4, 5], 10
Output: "Error: Index out of bounds"