Spot the bug in the storage estimate

from Data types
Java 25 LTS beginner 4 min 1 issue to find

Find the overflow bug in this storage estimate.

Java
static long estimatedBytes(int fileCount, int averageBytes) {
    return fileCount * averageBytes;
}
Open in playground
Report an error