A major part of OOP is encapsulating data. In other words, keep data related to an object away from data related to another object.
This is super important in good code as it reduces the likelihood of bugs and makes it much easier to expand and maintain programs.
We've been using objects throughout the course. Strings, arrays and pointers are all objects!