<!DOCTYPE html>
<html>
<body>
<?php
$a=array("Volvo"=>"XC90","BMW"=>"X5","Tesla"=>"ModelY");
print_r(array_keys($a,"ModelY"));
?>
</body>
</html>