I recently started working on Java script. This question may sound silly. I have written below function. My goal is to assign each value in array to new variable. Is this is possible in js? eg: Index0 = Saab, Index1 = Volvo, Index3
function myFunction() {
var str3 = "Index";
var cars = ["Saab", "Volvo", "BMW"];
var str1 = "Hello";
for(let i = 0; i < cars.length; i++) {
//console.log(str1 + i);
//cars[i] = str1 + i;
//console.log(cars[i]);
str3 + i = cars[i];
}
The above function which I have written didn't return expected result. Can someone please point me in correct direction on how to properly assign values.