You could call it core storage.
That wouldn't really be an appropriate name.
Back when I first started programming, in 1962 on an IBM 1401, the
1401 and all other computers (or almost all, if I'm not right about
"all") had core storage. Core storage was functionally the same as
when we now call RAM, but it was very different in structure. It was
made of tiny magnetic rings (called "cores," which is why the memory
was called "core storage") with wires threaded through them that
carried electrical currents. Depending on how the pulses went through
those wires, the cores were magnetized in one direction (1) or the
other (0) and could be read by other wires. So each core, which was
either 0 or 1, was a bit of storage.
The 1401 that I first worked on had 4K bytes (4,000, not 4096) of core
storage. Each byte consisted of seven bits, so 4,000 bytes used 28,000
of those cores. Tiny as the cores were, 28,000 was a lot of them, and
the 4,000 bytes was about the size of a modern refrigerator. Today,
RAM is all electronic and no longer uses those cores, so it isn't core
storage.
And today's electronic RAM is *much* smaller than core storage. At the
moment I have in my hand a 32GB thumb drive, which is a little smaller
than my thumb. That 32GB is 8,589,934 times as much memory as the 4K
on the 1401 (and other thumb drives that are the same physical size
can contain even more memory), and many thousands of time smaller.
It's also many thousands of times less expensive.
And to add another point, today's electronic memory is much faster
than core storage ever was. At least in part, that's because it's much
smaller than core storage. It takes electricity about one nanosecond
to traverse an 11 inch wire, so to achieve faster speeds, memory (and
other electronics) needs to be smaller.
When a program crashed, you printed out the contents of core storage
to aid in diagnosing what the problem was. That printout was called a
"core dump." The term "core dump" is still sometimes used for such
printouts of RAM, even though it's no longer cores that are dumped,
but as far as I know, the term "core storage" is no longer used.