Test your knowledge of JavaScript strings and arrays by answering the following questions.
Using the same example string, which of these statements would return the word eagle?
test.substring(4,9)
test.substring(5,9)
test.substring("eagle")
What does the join method of an array do?
Allows a new member to join the array.
Combines the array with another array.
Combines the array's elements into a string.