Short Array Syntax
You can leave out array() and use []'s now

<?php
$a = [1, 2, 3];
$b = ['foo' => 'orange', 'bar' => 'apple'];