const a = [1, 2, 3]; const doubled = a.map((num) => { return num * 2; }); const x = 2; x; doubled;
When I run the above program in console, only