Can i spawn Map ( Level ) like actor?

I have levels and i want to spawn one level from array. Can i do this?

Maybe by using Level Streaming or World Composition or something. I’ve heard of those things but never tried them but they sound like maybe you could use one of them that way.

Not spawn in the traditional sense.

A level is a collection of elements with custom level bp and various settings and can not be spawned like an actor.

Level streaming is a solution if you only need your sublevel once at a time. Loading the same sublevel multiple times requires some manual fiddling with C++.

If you consider something like an infinite runner, you could also consider to create actors instead. Possibly spawning in an actor which spawns in additional actors, constructing your level snippet from within your initial actor rather than having the level created ahead of time. Though setting that up would take a bit of time and not be terribly convenient in most environments.