Multiply Each Number in an Array by 2

Use a for loop to double each number in the array numbers and store them in a new array called doubledNumbers. Make sure the resulting array has only the doubled values, in the same order.
JavaScript
Console