How can I make more maps? packed scene

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Huti

Hi there. My question would be that I want more maps in this code, but that they come in line at the start of each game. So when I start the game it is map1 and on the next reload map2 next reload map3…etc
here is my code.Hope you understand. Sorry for my english ,google translate

export (PackedScene) var map_scene = preload("res://maps/Map1.tscn")
onready var map: Node2D = $Map

func _do_game_setup(players: Dictionary) -> void:
reload_map()
func reload_map() -> void:
var map_index = map.get_index()
remove_child(map)
map.queue_free()

map = map_scene.instance()
map.name = 'Map'
add_child(map)
move_child(map, map_index)