<?php

// your code goes here
$a = ['10:00'];
$b = ['10:30'];
$c = ['11:00'];
var_dump($a, $b, $c, array_merge($a, $b, $c));
