- if `check_1` and `check_2` variables are both True, it should set the value of a variable `outcome` to the string 'BOTH' - elif `check_1` is True and `check_2` is False, it should set the value of a variable `outcome` to the string 'ONE' - elif `check_1` is False and `check_2` is True, it should set the value of a variable `outcome` to the string 'TWO' - else (meaning both must be False), it should set the value of a variable `outcome` to the string 'NEITHER'