What's the equivalent syntax to java's (Object... args)

Java code:

  public void hello(String… names) {}

What’s the equivalent syntax in Kotlin? I looked for a while on the document site, but not found.

 


vararg names: String

Thank you!