JavaScript 配列操作クイズ

00:00
1 / 10
1 第1問

次のJavaScriptコードの出力は何ですか? ```javascript const arr = [1, 2]; arr.push(3); console.log(arr); ```