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