Hi everyone! I've got a small problem. I was trying to find the max of an array and I sort of did, but with a small setback.
(set: $a to (a: 15, 7, 14, 3, 6, 1, 24, 4, 11))
(for: each _item, ...$a)
[(set: $max to (find: _num where _num > $max, ...$a)'s (1))]
(print: $max)
Correctly prints 24, but also prints:
I can't find a (1) data name in an array
I tried to access a value in a string/array/datamap, but I couldn't find it
Nine times, so every loop.
What am I missing here?