$damn = ['seriously', 'wtf'] notice(type($damn)) # Tuple[String, String] # Ok, it should be possible to convert it to an array right? $really = Array($damn) notice(type($really)) # Guess what? yes you guessed right. Tuple[String, String] # Ok, let's get fancy and to use something that's not really recommended. $ohlol = Array.new($damn) notice(type($ohlol)) # by now, you know the drill...