Correction Exercice 2 <?php $numbers = [28, 32, 44, -67, 18, 24, -98]; foreach($numbers as $number) { if($number < 0) { echo "$number <br>"; } } ?> 21 May 2025Correction Exercice 1Correction Exercice 3