Just in case of empty list above: ## Before ```php $items2 = []; foreach ($items as $item) { $items2[] = $item; } ``` ## After ```php $items2 = []; $items2 = $items; ```
Just in case of empty list above:
Before
After