Yes, you can store JSON in MySQL. MySQL has a JSON type since version 5.7, but they have a lot if missing features until at least version 8.0.17, and new fixes to JSON are still being introduced.
You asked about drawbacks. Yes, there are many.
The JSON format of data typically uses 2-3 times as much space as storing the same data in normal rows and columns, so you will spend more on storage and it will fill up faster.
If you only store an array and fetch the whole array later, that's easy. But many people are tempted to use elements of JSON arrays or objects in SQL expressions. This makes queries much more complex, hard to code, and hard to optimize.
You should read some of the past questions I've answered about MySQL in JSON, and see the types of trouble some people cause trying to use JSON — when it would be so simple if they used normal rows and columns. From what I've seen of the ways people abuse JSON, I'm leaning toward saying it's the most ill-advised feature to be added to any relational database.
You will need to study the set of JSON functions provided by MySQL if you try to treat JSON arrays as collections of discrete elements. You will have to learn how to build arrays, search arrays, and take slices of arrays using these functions.
Searching JSON arrays for a particular element cannot be optimized with a traditional index. You must use a multi-valued index.
You might also like my presentation How to Use JSON in MySQL Wrong.
In your example of storing a simple array, it would be better for storage efficiency, query complexity, and optimization if you stored the values one per row in a dependent table. This is the correct way to store multi-valued attributes in a relational database.
Using JSON is just like any other form of denormalization. It can be an advantage, but only for a specific query. It comes at the disadvantage for all other queries.