Hint correction needed for "hallenge Guide: Test if One Value is Below or At Least as Large as Another "

for the line " isAtLeast() compares if the first parameter is equal to or less than the second (a >= b) ."

(a >= b) should be (a <= b) :slight_smile:

freeCodeCamp Challenge Guide: Test if One Value is Below or At Least as Large as Another - Guide - The freeCodeCamp Forum