In my smartform I want to read a field ("naam") from a featureset so I can use that to enter in my new feature.
I managed to select the correct feature from the featureset by it's geographical location:
// Get name from underlying buffer
var feature1 = $feature
var geometry2 = FeatureSetByName($map,"Wildweiden PairwiseBuffer")
var intersectBufferFS = Intersects(feature1, geometry2)
return intersectBufferFS
which results in:

Now, how do I extract the third field 'naam' to a string?
thanks for your time,
Bert