<!DOCTYPE html>
<html>
<body>
<?php
$cars=array("Volvo","BMW","Tesla","BYD","Mercedes","Audi");
print_r(array_chunk($cars,2));
?>
</body>
</html>