<?php use kim\present\utils\arrays\ArrayUtils;
$arrayUtils = ArrayUtils::from(["Apple", "Banana", "Carrot"]);
//Gets last value
$arrayUtils->last();
// expected output: "Carrot"
$arrayUtils->last() : mixed;
ArrayUtils::lastFrom(iterable $from) : mixed;