Can I Use Arrays for Dynamic Page URLs?

Let’s say I have a website:

mywebsite.com 

Let’s say I have a Database of two columns like this:
title | Numbers
apples | [“1”, “2”, “3”, “4”, “5”]

I want to reference the Numbers within the URL parameters like this:

mywebsite.com/apples/1 
mywebsite.com/apples/2 
mywebsite.com/apples/3 
etc... 

Instead of creating five different new columns, is it possible if I do this? I know that you can’t set an array as a URL parameter, but is there a way to append array values to the end of the URL?
Thanks for your help and God Bless :slight_smile: