Running scenarios in a loop

Hi,
I would like to ask about running ScenarioBuilder statements in a loop.

val gatlingScenarios = scenario_1 .exec(scenario2) .exec(scenario3) .exec(scenario4)

When I try to use e.g. “during” statement here, I get the error below

val gatlingScenarios = during(10){ scenario_1 .exec(scenario2) .exec(scenario3) .exec(scenario4) }

Error: type mismatch;
found : io.gatling.core.structure.ScenarioBuilder
required: io.gatling.core.structure.ChainBuilder

Is it somehow possible?