Using SearchCriteria to find objects with multiple gameplay tags

How can I use SearchCriteria to reference only objects that have two tags?

Could someone show me an example of initializing tags, an array of tags, and then SearchCriteria using that array?

I am currently stuck with red lines while trying to initialize an array of tags. Here is the code I have so far:

using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }
using { /UnrealEngine.com/Temporary/Diagnostics }
using { /Verse.org/Random }
using { /UnrealEngine.com/Temporary/SpatialMath }
using { /Verse.org/Simulation/Tags }

Style1 := class(tag){}

RequiredTags : []tag = array{Style1{}}

SearchCriteria1 := class(tag_search_criteria){RequiredTags:[]tag := RequiredTags}

Both of the last two lines are underlined in red.