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

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

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

array_unshift($fruits, "grape");

print_r($fruits);