<?php $a = [0,1,2,3,4,5]; unset($a[5]); array_pop($a); $a[] = 6; var_dump($a);
You have javascript disabled. You will not be able to edit any code.