What does this Bash program print?

from Shell basics
GNU Bash 5.2.21 beginner 3 min

What does this Bash program print?

Shell
show_count() {
  printf 'count=%d first=<%s>\n' "$#" "$1"
}

label='Q1 report'
show_count "$label"
show_count $label
Open in playground
Report an error