I have three layers, two of them are polygons (parcels and buildings) and one of them is a point. I would like the parcel's popup to return multiple attributes/columns from the building layer as well as the point layer.
Based on the code below, I am able to show a single corresponding attribute from the building layer when a parcel is clicked.
But now I want to return more attributes from the building layer as well.
How can I do this?
Like let's say I also want return values from the columns `LenFt` and `ID` then how can I do that?
Side question: Also is there a way to add contextual text before the attribute value in the Arcade code?
Like let's say I want to add bold `Area:`, `Length:` and `ID:` before each of the returned attribute value.
Attributes of interest from the building layer:

Code:
// Create a variable that the FeatureSet of intersecting feature attributes
var building = FeatureSetByName($map, "BuildingFootprints_Clip")
var intersectLayer = Intersects(building, $feature)
for (var f in intersectLayer){
var popup = f.AREAFT
}
return popup