Implicit semicolon behaviorWhat does this snippet of code print? let array = [1, 2] (array).push(3) console.log(array) Select one:[1, 2][1, 2, 3]ReferenceErrorSubmit