How do we organize related data and functionality in OOP?

We bundle it into one objectWe separate data and functionality into different objectsWe put functions at the top of the code, followed by variablesWe put the entire application's data and functions in an object

We bundle it into one object.