You have already completed these exercises!
Do you want to take them again?
You completed the PHP Create Arrays Exercises from W3Schools.com
Share on:
Which is NOT a correct syntax to create an array?
$cars = array('Volvo', 'BMW', 'Toyota');
$cars = ['Volvo', 'BMW', 'Toyota'];
$cars = ('Volvo', 'BMW', 'Toyota');