# I need help with what it is asking. Perhaps you could elaborate so that we can pin point what you exactly need and help you with it?
# You can use in Java / JS: function isDescending(list) { var last_x = list[0]; for(var x in list) { if (last_x < x) return false; else last_x = x; } return true; }