C: var fives = new Array(); fives[0] = 0; for(j = 1; j < 10; j++) fives[j] = fives[j - 1] + 5; is the correct answer option.
An array is a collection of similar data items stored at contiguous memory places. The array is the simplest data structure where each data element can be accessed directly by using its index number. Â In regard to the given question, in option c the required code is given that will load an array of fives(), with the starting value of the first element = 0, and will load each subsequent element by addition of 5, ending with the last element = 45.
You can learn more about array at
https://brainly.com/question/28565733
#SPJ4