Language: JavaScript 1 2 3 4 5 function find Largest Index (theArray) { index = 0; largestValue = theArray[0]; for (i = 0; i < theArray.length; ++i) { if (theArray[i] > largest Value) { index = i; // INSERT MISSING CODE 6 7 8 } 9 } 10 11 } return index; Image not displaying? Complete the function by replacing // INSERT MISSING CODE with the correct line of code.​