export function maxValue(values) {
let resultOfMaxValue = Math.max(...values)
if(values.length === 0) {
return 0
}
return resultOfMaxValue