There is no guarantee that rows will be returned in any particular order absent an ORDER BY clause in your query.
For a simple query that returns all columns of all rows in the table... e.g.
SELECT * FROM mytable ;
For such a query, it is likely that MySQL will perform a full table scan, from the beginning of the table, so it's likely that the rows will be returned in the order they are found in physical storage.
This may roughly correspond to the order the rows were inserted, if there have been no deletes, no updates and no reorganization, where space for an inserted row was later reclaimed, and reused to store a newly inserted row.
But, this behavior is NOT guaranteed. To return the rows in the order they were inserted, you really need to have that information (that is, the sequence in which the row was inserted) stored within a column in the row.