PHP coding challenge

Defining if...else statements

āœØ Your Task

Return "heavy" if weight argument is larger or equal to 100 and "light" if it's smaller.

āœļø PHP PHP version: 8.1
šŸ‘‰ Press "Run" and check the result below.
Test cases
Method weigh should return small when called with a weight of -1.5
Method weigh should return small when called with a weight of 99
Method weigh should return large when called with a weight of 100