bool or(bool firstCondition, bool secondCondition) { return firstCondition || secondCondition; // Corrected from '&&' to '||' }