Map letters to numbersConsider the following mapping. What gets logged? const myArr = ['a', 'b', 'c']; const myMap = { a: 1, b: 2, c: 3 }; const result = myArr.map(letter => myMap[letter]); console.log(result); Select one:1, 2, 3a, b, c[1, 2, 3][a, b, c]Submit