let arr=["a","b","c"]
for (let i=0;i<3;i++){
let arr[i]=i
}
//Result is expected to be be let a=1 ; let b=1; let c=1;
//Why isnt this working and how do we initialise multiple variables using for loop to get a=1;b=1;c=1 ?
Your help will be appreciated