Ruby's documentation displays method signatures as:
start_with?([prefixes]+) → true or false
which looks like an array to me, but it is not. You can pass a single string or various string as arguments, like so:
"hello".start_with?("heaven", "hell") #=> true
How do I pass an array as a list of arguments? The following does not work:
"hello".start_with?(["heaven", "hell"])