(15 pts) The cоde belоw cоntаins exаctly Six errors. For eаch error: 1. state which line has error, 2. describe the nature of the error in your own words, and 3. write a modification of the code that “fixes” the error (there are multiple ways to fix each error – just make a change that allows the code to run without generating an error, For example: line (1) - To input a single quote in input statement, you need enter single quote twice - it should be ''favorite'' NOW you will find the other FIVE errors. (1) n = input('What's your 'favorite' number? ') (2) favoriteOdd = 2n + 1 (3) myVector = linspace(2,8,3) (4) yourVector = 2:3:6 (5) myVector(yourVector) (6) yourVector(myVector) = 6 (7) myVectorSquared = myVector * myVector (8) if (rem(n,2) = 0) (9) disp('even') (10) else (11) disp('odd') (12) end