$array=array() code example
Example 1: python array
array = ["1st", "2nd", "3rd"];
#prints: ['1st', '2nd', '3rd']
Example 2: php arrays
$nums = [1, 2, 3, 4, 5];
array = ["1st", "2nd", "3rd"];
#prints: ['1st', '2nd', '3rd']
$nums = [1, 2, 3, 4, 5];