How can I use the array_push function to add an element to an array in PHP? Example code: - Biz Tech

How can I use the array_push function to add an element to an array in PHP? Example code:

Listen
$fruits = array("apple", "banana", "orange");

array_push($fruits, "grape");

print_r($fruits);