After reading some codes that worked with this "Armstrong Numbers" thing, I came up with this code (which is adapted from a code I found here). The output for this code, which seems correct, is: [1, 2, 3, 4, 5, 6, 7, 8, 9, 25, 36, 125, 216, 729] memory 3918 time = 0 [1, 2, 3, 4, 5, 6, 7, 8, 9, 25, 36, 125, 216, 729, 1296, 16807, 32768, 59049] memory 3918 time = 0 But the message I get is "The array returned by the getNumbers method is either missing elements or has extra elements.". However, it seems to me that the problem is the usage of memory to run this code ("3918"). Does this "memory 3918" output mean 3918 MB of memory? Or the problem is really about missing elements or extra elements in the returned array? I'm trying to understand the other codes posted on the help topics, but they are really difficult for me, so that's why I'm insisting on this one. Thanks!