diff --git a/03_arrays.php b/03_arrays.php index c63a4e5..3d5470b 100644 --- a/03_arrays.php +++ b/03_arrays.php @@ -12,7 +12,7 @@ $colors = ['red', 'blue', 'green']; // Using the array function to create an array of numbers -$numbers = [1, 2, 3, 4, 5]; +$numbers = array(1, 2, 3, 4, 5); // Outputting values from an array echo $numbers[0];