Yes, you can. Ruby offers a data structure called Array using which you can store multiple values in a single element. Let’s look at an example.
Variable with single assigned value:
user_limit = 250
Variable with multiple assigned values:
users = [‘john’, ‘kevin’, ‘jay’, ‘navin’]
This is an array, and you can store more than one value in an array like this.