Home > Coding Fundamentals Refresher > Coding Fundamentals and Patterns > Introduction to Arrays and Array Operations Show previous contentTry this exercise. Is this statement true or false?The output of the following code in Python will be 3.PYTHON1numbers = [3, 2, 5, 7, 3, 6] 2print(numbers[3])Press true if you believe the statement is correct, or false otherwise.TRUEFALSE Show following content