Generates a Random Business Idea in Ruby
In this guide, you will learn how to build a method that can generate a business idea at random, .
Guide Tasks
  • Read Tutorial
  • Complete the Exercise

Summary

Build a This for That method

Exercise Description

Define a method that lists some examples of companies and industries. It should then build a "This for That" statement using one company and one industry. You must also be able to generate a method that can randomly choose a business idea.

Example Data

@companies = uber airbnb google buzzfeed
@industries = airlines skateboards hockey comics
-> "It's like airbnb for comics"

Real World Usage

Many businesses use "ThisforThat" examples to make their own company/industry well-known. This is a quick and easy way to find possible advertising ideas for any business rendering your services.

Test Cases

Code File