For context I have two main polygon features: Larger watersheds, and smaller impaired catchments. My goal is to have a field within the larger watershed feature named "Is Impaired" containing Y/N values. If the Larger watershed intersects with any of the impaired catchments, it will return Y, and N if not. When I run the code, I get all null values. Anything you recommend? Don't have a ton of coding experience, and would love advice...

// Variable containing impaired catchment feature
var ImpCatchments = FeatureSetByName($Datastore, "Catchments_Impaired")
//If larger watershed boundary feature intersects with any smaller impaired catchments features return "Y/N"
if (Intersects($feature,ImpCatchments) == True)
{
Return "Y";
}
else
{
Return "N";
}