What is true about Arrays?
JavaScript does not support associative arrays
You should use objects when you want the element names to be strings
You should use arrays when you want the element names to be numbers
All of the above
Correct Answer : D
What is the final value of array below?
const array = [1, 2, 3] const extension = [4, 5, 6] array = [...extension, ...array]