What does the code snippet to the right output by console.log?
console.log
const a = [999, 1111, 111, 2, 0] const b = a.sort() console.log(a) console.log(b)
Source Fromopen in new window