I am trying to reuse the variables first and second, I am able to update the variable directly, but I can't reuse them for another destructuring statement.
let [first, second] = [1, 2]
[first, second] = [3, 4]
Variables are declared using let, so we can reassign. But, I am getting a runtime error