def name(self, args):
        """Display and create a new Suggestion by name
        
        Parameters
        ----------
        args : list(str)
            List of strings with subcommands

        Returns
        -------
        list(str) - the response messages string array
        """

        messages = []
        if len(args) < 2:
            raise Exception('syntax: ```css\n.d suggest "SUGGESTION TEXT"```')
        suggestion = Suggestion().create_new(name=self.user.name,
                                             text=' '.join(args[1:]))
        messages.append(suggestion.get_string(self.user))
        return messages