以下のコードの実行結果はどうなりますか? ```javascript const numbers = [1, 2, 3]; const doubled = numbers.map(x => x * 2); console.log(doubled); ```