I want to know if there's any difference in either the output or the object being created when these commands are run to create the object $array
.
$array = ["Sagittarius", "Cancer", "Gemini", "Pisces"];
$array = array("Sagittarius", "Cancer", "Gemini", "Pisces");
Thanks for the feedback!!