PHP - Loops
Given an array
$items = ['pen' => 3, 'book' => 5, 'eraser' => 2], write a foreach loop to create a new array $doubled where each value is doubled. Which code snippet correctly does this?