<?php 	$associativeArray = [         "carOne" => "BMW",         "carTwo" => "VW",         "carThree" => "Mercedes"     ];          echo $associativeArray["carTwo"] . " Is a german brand" ?>

Read more of this post