i want to pass two arguments to the to "deployment template" from the values.yaml the result should be like this :

in values.yaml i have this >>>

And here is my template deployment file :
{{ if .Values.containerCommand }}
command: [{{ .Values.containerCommand }}]
{{ end }}
The questions is how can i pass two arguments to "containerCommand" value.
Because when i want to these arguments to the helm, i got an error:
I got an error Error: UPGRADE FAILED: error validating "": error validating data: ValidationError(Deployment.spec.template.spec.containers[0].command[0]): invalid type for io.k8s.api.core.v1.Container.command: got "array", expected "string"