'use strict'; module.exports = function lastItem(array) { return array[array.length - 1]; };