Multiple choice technology enterprise content management var test = "Hello world" what will test.substring(3,7) result in index out of range error during compilation lo w llo w lo wo Reveal answer Fill a bubble to check yourself B Correct answer Explanation The substring(start, end) method extracts characters from index start up to, but not including, index end. For "Hello world", index 3 is 'l' and index 7 is 'o', yielding "lo w".