How can I get the string name 'bar' instead of its contents ? Never found a solution for this one? I want console.log("?") to say 'bar'
let foo = [1,2,3], bar = [11,22,33], hello = [111,222,333]
let arr = [foo, bar, hello]
console.log(arr[1])
// returns 11, 22, 33 ** I know this
// I want it to return "bar" ?