extends Area3D var contents: int = 0 # Called when the node enters the scene tree for the first time. func _ready() -> void: contents = randi_range(0, 20) func get_contents() -> int: var con = contents contents = 0 return con