Assume you have the following Dockerfile and the ubuntu:v1 image created with it.
FROM ubuntu
LABEL author=HyperUser
CMD ["echo", "Hello World."]
CMD ["echo", "Hello Students."]
What will happen if you run it using the docker run ubuntu:v1 echo Hi. command.